nzbget: update from 14.2 to 15.0

This commit is contained in:
Pascal Wittmann 2015-05-29 19:07:20 +02:00
parent 0ad7204c3d
commit 86e6e490ff

View File

@ -1,20 +1,19 @@
{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
, gnutls, libgcrypt }:
, gnutls, libgcrypt, zlib }:
stdenv.mkDerivation rec {
name = "nzbget-14.2";
name = "nzbget-15.0";
src = fetchurl {
url = "mirror://sourceforge/nzbget/${name}.tar.gz";
sha256 = "0xs620hjxi9fkab6bmgy7zhwd0h035jpabf0wp2nc5y0gnsay95v";
sha256 = "02nclq97gqr4zwww4j1l9sds2rwrwwvwvh2gkjhwvr0pb4z3zw9y";
};
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls libgcrypt ];
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls
libgcrypt zlib ];
enableParallelBuilding = true;
NIX_LDFLAGS = "-lz";
meta = with stdenv.lib; {
homepage = http://nzbget.sourceforge.net/;
license = licenses.gpl2Plus;