about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/altserver-linux/default.nix
blob: 30d5282949014e10c8026b972cfa59996dc7786a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{ 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 ];
  };
})