2011-04-19 21:35:24 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
|
2015-05-29 18:07:20 +01:00
|
|
|
, gnutls, libgcrypt, zlib }:
|
2011-04-19 21:35:24 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-05-29 18:07:20 +01:00
|
|
|
name = "nzbget-15.0";
|
2011-04-19 21:35:24 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/nzbget/${name}.tar.gz";
|
2015-05-29 18:07:20 +01:00
|
|
|
sha256 = "02nclq97gqr4zwww4j1l9sds2rwrwwvwvh2gkjhwvr0pb4z3zw9y";
|
2011-04-19 21:35:24 +01:00
|
|
|
};
|
|
|
|
|
2015-05-29 18:07:20 +01:00
|
|
|
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls
|
|
|
|
libgcrypt zlib ];
|
2011-04-19 21:35:24 +01:00
|
|
|
|
2013-01-06 21:29:16 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-19 07:44:54 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-04-19 21:35:24 +01:00
|
|
|
homepage = http://nzbget.sourceforge.net/;
|
2014-11-19 07:44:54 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2011-04-19 21:35:24 +01:00
|
|
|
description = "A command line tool for downloading files from news servers";
|
2014-11-19 07:44:54 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2011-04-19 21:35:24 +01:00
|
|
|
};
|
|
|
|
}
|