mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 20:03:16 +00:00
alt-server: init at 0.0.5
This commit is contained in:
parent
9165d5cbe9
commit
c1df21e5b6
41
pkgs/tools/misc/alt-server/default.nix
Normal file
41
pkgs/tools/misc/alt-server/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv
|
||||
, fetchurl
|
||||
, lib
|
||||
, autoPatchelfHook
|
||||
, 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=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
avahi-compat
|
||||
];
|
||||
|
||||
dontUnpack = true;
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
cp $src $out/bin/alt-server
|
||||
chmod u+rx $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;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ max-amb ];
|
||||
};
|
||||
})
|
||||
|
@ -262,6 +262,8 @@ with pkgs;
|
||||
|
||||
alterx = callPackage ../tools/security/alterx { };
|
||||
|
||||
alt-server = callPackage ../tools/misc/alt-server { };
|
||||
|
||||
asciicam = callPackage ../applications/video/asciicam { };
|
||||
|
||||
asitop = pkgs.python3Packages.callPackage ../os-specific/darwin/asitop { };
|
||||
|
Loading…
Reference in New Issue
Block a user