mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 16:53:21 +00:00
27b7e86eef
- Remove unused arg - Remove unneeded buildInput - Remove redundant chmod +r - Set meta.mainProgram - Set meta.sourceProvenance as this is sourcing binary code
39 lines
962 B
Nix
39 lines
962 B
Nix
{ 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.agpl3;
|
|
mainProgram = "alt-server";
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ max-amb ];
|
|
};
|
|
})
|
|
|