about summary refs log tree commit diff
path: root/pkgs/tools/games/opentracker/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/games/opentracker/default.nix')
-rw-r--r--pkgs/tools/games/opentracker/default.nix91
1 files changed, 0 insertions, 91 deletions
diff --git a/pkgs/tools/games/opentracker/default.nix b/pkgs/tools/games/opentracker/default.nix
deleted file mode 100644
index 4561a5c86436..000000000000
--- a/pkgs/tools/games/opentracker/default.nix
+++ /dev/null
@@ -1,91 +0,0 @@
-{
-  lib,
-  stdenv,
-  buildDotnetModule,
-  fetchFromGitHub,
-  autoPatchelfHook,
-  wrapGAppsHook3,
-  dotnetCorePackages,
-  fontconfig,
-  gtk3,
-  icu,
-  libkrb5,
-  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
-    wrapGAppsHook3
-  ];
-
-  buildInputs = [
-    stdenv.cc.cc.lib
-    fontconfig
-    gtk3
-    icu
-    libkrb5
-    libunwind
-    openssl
-  ];
-
-  runtimeDeps =
-    [
-      gtk3
-      openssl
-      xinput
-    ]
-    ++ (with xorg; [
-      libICE
-      libSM
-      libX11
-      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";
-    sourceProvenance = with sourceTypes; [
-      fromSource
-      # deps
-      binaryBytecode
-      binaryNativeCode
-    ];
-    license = licenses.mit;
-    maintainers = [maintainers.ivar];
-    mainProgram = "OpenTracker";
-    platforms = ["x86_64-linux"];
-  };
-}