about summary refs log tree commit diff
path: root/pkgs/tools/misc/altserver-linux/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/altserver-linux/default.nix')
-rw-r--r--pkgs/tools/misc/altserver-linux/default.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/pkgs/tools/misc/altserver-linux/default.nix b/pkgs/tools/misc/altserver-linux/default.nix
deleted file mode 100644
index 30d528294901..000000000000
--- a/pkgs/tools/misc/altserver-linux/default.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{ stdenv
-, fetchurl
-, lib
-, avahi-compat
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "altserver-linux";
-  version = "0.0.5";
-
-  src = fetchurl {
-    url = "https://github.com/NyaMisty/AltServer-Linux/releases/download/v${finalAttrs.version}/AltServer-x86_64";
-    hash = "sha256-C+fDrcaewRd6FQMrO443xdDk/vtHycQ5zWLCOLPqF/s=";
-  };
-
-  dontUnpack = true;
-
-  installPhase = ''
-    runHook preInstall
-
-    mkdir -p $out/bin
-    cp $src $out/bin/alt-server
-    chmod u+x $out/bin/alt-server
-
-    runHook postInstall
-  '';
-
-  meta = with lib; {
-    homepage = "https://github.com/NyaMisty/AltServer-Linux";
-    description = "AltServer for AltStore, but on-device. Requires root privileges as well as running a custom anisette server currently";
-    license = licenses.agpl3Only;
-    mainProgram = "alt-server";
-    sourceProvenance = with sourceTypes; [ binaryNativeCode ];
-    platforms = platforms.linux;
-    maintainers = with maintainers; [ max-amb ];
-  };
-})
-