2011-04-20 00:35:24 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
|
2016-05-04 11:58:01 +03:00
|
|
|
, gnutls, libgcrypt, zlib, openssl }:
|
2011-04-20 00:35:24 +04:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-07-20 10:56:02 +03:00
|
|
|
name = "nzbget-${version}";
|
2016-05-04 11:58:01 +03:00
|
|
|
version = "17.0-r1686";
|
|
|
|
filename = "nzbget-17.0-testing-r1686";
|
2011-04-20 00:35:24 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-05-04 11:58:01 +03:00
|
|
|
url = "http://github.com/nzbget/nzbget/releases/download/v${version}/${filename}-src.tar.gz";
|
|
|
|
sha256 = "0hk0hiccdk3bivdnc2635kqqdwgwf73wvis1wl9k0snds25dwfiw";
|
2011-04-20 00:35:24 +04:00
|
|
|
};
|
|
|
|
|
2015-05-29 20:07:20 +03:00
|
|
|
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls
|
2016-05-04 11:58:01 +03:00
|
|
|
libgcrypt zlib openssl ];
|
2011-04-20 00:35:24 +04:00
|
|
|
|
2013-01-07 01:29:16 +04:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-19 10:44:54 +03:00
|
|
|
meta = with stdenv.lib; {
|
2015-07-20 10:56:02 +03:00
|
|
|
homepage = http://nzbget.net;
|
2014-11-19 10:44:54 +03:00
|
|
|
license = licenses.gpl2Plus;
|
2011-04-20 00:35:24 +04:00
|
|
|
description = "A command line tool for downloading files from news servers";
|
2014-11-19 10:44:54 +03:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 20:50:55 +03:00
|
|
|
platforms = with platforms; unix;
|
2011-04-20 00:35:24 +04:00
|
|
|
};
|
|
|
|
}
|