sabnzbd: 3.2.1 -> 3.3.1

This commit is contained in:
Johannes Schleifenbaum 2021-06-21 14:57:43 +02:00
parent 9f9a0c0ec6
commit b70e57ea18
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0

View file

@ -20,26 +20,30 @@ let
]);
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
in stdenv.mkDerivation rec {
version = "3.2.1";
version = "3.3.1";
pname = "sabnzbd";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
sha256 = "sha256-y2uaXa2DPZHBLukAdwKTwXauaJHX5Uft35vsthzGwME=";
sha256 = "sha256-OcasqRu6nh9hKepMbXVgZ49MeJTlWK+qPSkiBPgmYYo=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
installPhase = ''
runHook preInstall
mkdir -p $out
cp -R * $out/
mkdir $out/bin
echo "${pythonEnv}/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
chmod +x $out/bin/sabnzbd
wrapProgram $out/bin/sabnzbd --set PATH ${path}
runHook postInstall
'';
meta = with lib; {