mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
66 lines
1.2 KiB
Nix
66 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildDotnetModule
|
|
, fetchFromGitHub
|
|
, autoPatchelfHook
|
|
, wrapGAppsHook
|
|
, dotnetCorePackages
|
|
, fontconfig
|
|
, gtk3
|
|
, openssl
|
|
, libX11
|
|
, libXi
|
|
, xinput
|
|
}:
|
|
|
|
buildDotnetModule rec {
|
|
pname = "opentracker";
|
|
version = "1.8.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "trippsc2";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "0nsmyb1wd86465iri9jxl3jp74gxkscvnmr3687ddbia3dv4fz0z";
|
|
};
|
|
|
|
dotnet-runtime = dotnetCorePackages.runtime_3_1;
|
|
nugetDeps = ./deps.nix;
|
|
|
|
projectFile = "OpenTracker.sln";
|
|
executables = [ "OpenTracker" ];
|
|
|
|
doCheck = true;
|
|
dotnet-test-sdk = dotnetCorePackages.sdk_3_1;
|
|
|
|
nativeBuildInputs = [
|
|
autoPatchelfHook
|
|
wrapGAppsHook
|
|
];
|
|
|
|
buildInputs = [
|
|
stdenv.cc.cc.lib
|
|
fontconfig
|
|
gtk3
|
|
];
|
|
|
|
runtimeDeps = [
|
|
gtk3
|
|
openssl
|
|
libX11
|
|
libXi
|
|
xinput
|
|
];
|
|
|
|
autoPatchelfIgnoreMissingDeps = true; # Attempts to patchelf unneeded SOs
|
|
|
|
meta = with lib; {
|
|
description = "A tracking application for A Link to the Past Randomizer";
|
|
homepage = "https://github.com/trippsc2/OpenTracker";
|
|
license = licenses.mit;
|
|
maintainers = [ maintainers.ivar ];
|
|
mainProgram = "OpenTracker";
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|