Merge pull request #318308 from IslandUsurper/fix-alttpr_opentracker

alttpr-opentracker: Fix build errors
This commit is contained in:
Aleksana 2024-06-18 01:48:30 +08:00 committed by GitHub
commit b6acd200ab
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 = "Tracking application for A Link to the Past Randomizer";
homepage = "https://github.com/trippsc2/OpenTracker";