2011-04-19 22:35:24 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
|
2016-05-04 10:58:01 +02:00
|
|
|
, gnutls, libgcrypt, zlib, openssl }:
|
2011-04-19 22:35:24 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "nzbget";
|
2019-05-05 19:25:57 +02:00
|
|
|
version = "21.0";
|
2011-04-19 22:35:24 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 10:14:28 +02:00
|
|
|
url = "https://github.com/nzbget/nzbget/releases/download/v${version}/nzbget-${version}-src.tar.gz";
|
2019-05-05 19:25:57 +02:00
|
|
|
sha256 = "0lwd0pfrs4a5ms193hgz2qiyf7grrc925dw6y0nfc0gkp27db9b5";
|
2011-04-19 22:35:24 +02:00
|
|
|
};
|
|
|
|
|
2017-05-01 12:02:44 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ libxml2 ncurses libsigcxx libpar2 gnutls
|
2016-05-04 10:58:01 +02:00
|
|
|
libgcrypt zlib openssl ];
|
2011-04-19 22:35:24 +02:00
|
|
|
|
2013-01-06 22:29:16 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2014-11-19 08:44:54 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://nzbget.net";
|
2014-11-19 08:44:54 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2011-04-19 22:35:24 +02:00
|
|
|
description = "A command line tool for downloading files from news servers";
|
2014-11-19 08:44:54 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2016-08-02 19:50:55 +02:00
|
|
|
platforms = with platforms; unix;
|
2011-04-19 22:35:24 +02:00
|
|
|
};
|
|
|
|
}
|