commit
36586c2ab3
@ -1,13 +0,0 @@
|
|||||||
source $stdenv/setup
|
|
||||||
|
|
||||||
tar xvfz $src
|
|
||||||
mv SABnzbd-* $out
|
|
||||||
|
|
||||||
mkdir $out/bin
|
|
||||||
echo "$python/bin/python $out/SABnzbd.py \$*" > $out/bin/sabnzbd
|
|
||||||
chmod +x $out/bin/sabnzbd
|
|
||||||
|
|
||||||
wrapPythonProgramsIn $out/bin "$pythonPath"
|
|
||||||
wrapProgram $out/bin/.sabnzbd-wrapped --prefix PATH : "$par2cmdline/bin:$unzip/bin:$unrar/bin"
|
|
||||||
|
|
||||||
echo $out
|
|
@ -1,24 +1,33 @@
|
|||||||
{stdenv, fetchurl, python, pythonPackages, par2cmdline, unzip, unrar}:
|
{stdenv, fetchurl, python, par2cmdline, unzip, unrar, p7zip, makeWrapper}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
version = "0.7.20";
|
pythonEnv = python.withPackages(ps: with ps; [ pyopenssl python.modules.sqlite3 cheetah]);
|
||||||
|
path = stdenv.lib.makeBinPath [ par2cmdline unrar unzip p7zip ];
|
||||||
|
in stdenv.mkDerivation rec {
|
||||||
|
version = "1.1.0";
|
||||||
name = "sabnzbd-${version}";
|
name = "sabnzbd-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/sabnzbdplus/SABnzbd-${version}-src.tar.gz";
|
url = "https://github.com/sabnzbd/sabnzbd/archive/${version}.tar.gz";
|
||||||
sha256 = "0hl7mwgyvm4d68346s7vlv0qlibfh2p2idpyzpjfvk8f79hs9cr0";
|
sha256 = "16srhknmjx5x2zsg1m0w9bipcv9b3b96bvb27fkf4dc2aswwcsc7";
|
||||||
};
|
};
|
||||||
|
|
||||||
pythonPath = with pythonPackages; [ pyopenssl sqlite3 cheetah ];
|
buildInputs = [ pythonEnv makeWrapper ];
|
||||||
buildInputs = with pythonPackages; [wrapPython];
|
|
||||||
inherit python par2cmdline unzip unrar;
|
|
||||||
|
|
||||||
builder = ./builder.sh;
|
installPhase = ''
|
||||||
|
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}
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
|
description = "Usenet NZB downloader, par2 repairer and auto extracting server";
|
||||||
homepage = http://sabnzbd.org;
|
homepage = http://sabnzbd.org;
|
||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ fridh ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user