nixpkgs/pkgs/servers/sabnzbd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

65 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-08-22 02:20:28 +00:00
, fetchFromGitHub
, python3
, par2cmdline
, unzip
, unrar
, p7zip
, makeWrapper
2021-09-21 11:38:22 +00:00
, nixosTests
2020-08-22 02:20:28 +00:00
}:
2016-09-26 18:52:21 +00:00
let
2022-06-14 08:46:56 +00:00
pythonEnv = python3.withPackages(ps: with ps; [
2020-08-22 02:20:28 +00:00
chardet
cheetah3
cherrypy
cryptography
configobj
feedparser
sabyenc3
2021-09-21 11:06:45 +00:00
puremagic
guessit
2022-01-30 07:45:16 +00:00
pysocks
2020-08-22 02:20:28 +00:00
]);
2021-01-15 07:07:56 +00:00
path = lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
2016-09-26 18:52:21 +00:00
in stdenv.mkDerivation rec {
2022-06-14 08:46:56 +00:00
version = "3.6.0";
2017-02-14 13:14:27 +00:00
pname = "sabnzbd";
2017-02-14 13:14:27 +00:00
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = version;
2022-06-14 08:46:56 +00:00
sha256 = "sha256-X5O3TxNjQ+8kOd3OakKV0+KncxQr+oQn0mXeBXDV/Xs=";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ pythonEnv ];
2016-09-26 18:52:21 +00:00
installPhase = ''
2021-06-21 12:57:43 +00:00
runHook preInstall
2016-09-26 18:52:21 +00:00
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}
2021-06-21 12:57:43 +00:00
runHook postInstall
2016-09-26 18:52:21 +00:00
'';
2021-09-21 11:38:22 +00:00
passthru.tests = {
smoke-test = nixosTests.sabnzbd;
};
meta = with lib; {
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
homepage = "https://sabnzbd.org";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2021-09-21 11:15:42 +00:00
maintainers = with lib.maintainers; [ fridh jojosch ];
};
}