mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
88 lines
1.8 KiB
Nix
88 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
buildDotnetModule,
|
|
fetchFromGitHub,
|
|
autoPatchelfHook,
|
|
wrapGAppsHook,
|
|
dotnetCorePackages,
|
|
fontconfig,
|
|
gtk3,
|
|
libunwind,
|
|
openssl,
|
|
xinput,
|
|
xorg,
|
|
}:
|
|
buildDotnetModule rec {
|
|
pname = "opentracker";
|
|
version = "1.8.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trippsc2";
|
|
repo = pname;
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha512-nWkPgVYdnBJibyJRdLPe3O3RioDPbzumSritRejmr4CeiPb7aUTON7HjivcV/GKor1guEYu+TJ+QxYrqO/eppg==";
|
|
};
|
|
|
|
patches = [./remove-project.patch];
|
|
|
|
dotnet-runtime = dotnetCorePackages.runtime_6_0;
|
|
|
|
nugetDeps = ./deps.nix;
|
|
|
|
projectFile = "OpenTracker.sln";
|
|
executables = ["OpenTracker"];
|
|
|
|
doCheck = true;
|
|
disabledTests = [
|
|
"OpenTracker.UnitTests.Models.Nodes.Factories.SLightWorldConnectionFactoryTests.GetNodeConnections_ShouldReturnExpectedValue"
|
|
"OpenTracker.UnitTests.Models.Sections.Factories.ItemSectionFactoryTests.GetItemSection_ShouldReturnExpected"
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
stdenv.cc.cc.lib
|
|
fontconfig
|
|
gtk3
|
|
libunwind
|
|
];
|
|
|
|
runtimeDeps =
|
|
[
|
|
gtk3
|
|
openssl
|
|
xinput
|
|
]
|
|
++ (with xorg; [
|
|
libICE
|
|
libSM
|
|
libX11
|
|
libXi
|
|
]);
|
|
|
|
# Attempts to patchelf unneeded SOs
|
|
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";
|
|
sourceProvenance = with sourceTypes; [
|
|
fromSource
|
|
# deps
|
|
binaryBytecode
|
|
binaryNativeCode
|
|
];
|
|
license = licenses.mit;
|
|
maintainers = [maintainers.ivar];
|
|
mainProgram = "OpenTracker";
|
|
platforms = ["x86_64-linux"];
|
|
};
|
|
}
|