alttpr-opentracker: fix build errors.

This commit is contained in:
Lyle Mantooth 2024-06-08 11:35:42 -04:00
parent a7b28ce5fd
commit 52e351b516
No known key found for this signature in database
GPG Key ID: 6DB52EAE123A5789

View File

@ -3,10 +3,13 @@
stdenv,
buildDotnetModule,
fetchFromGitHub,
autoPatchelfHook,
wrapGAppsHook3,
dotnetCorePackages,
fontconfig,
gtk3,
icu,
libkrb5,
libunwind,
openssl,
xinput,
@ -39,6 +42,7 @@ buildDotnetModule rec {
];
nativeBuildInputs = [
autoPatchelfHook
wrapGAppsHook3
];
@ -46,7 +50,10 @@ buildDotnetModule rec {
stdenv.cc.cc.lib
fontconfig
gtk3
icu
libkrb5
libunwind
openssl
];
runtimeDeps =
@ -62,6 +69,11 @@ buildDotnetModule rec {
libXi
]);
autoPatchelfIgnoreMissingDeps = [
"libc.musl-x86_64.so.1"
"libintl.so.8"
];
meta = with lib; {
description = "A tracking application for A Link to the Past Randomizer";
homepage = "https://github.com/trippsc2/OpenTracker";