lol
1{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
2, gnutls, libgcrypt, zlib, openssl }:
3
4stdenv.mkDerivation rec {
5 name = "nzbget-${version}";
6 version = "17.0-r1686";
7 filename = "nzbget-17.0-testing-r1686";
8
9 src = fetchurl {
10 url = "http://github.com/nzbget/nzbget/releases/download/v${version}/${filename}-src.tar.gz";
11 sha256 = "0hk0hiccdk3bivdnc2635kqqdwgwf73wvis1wl9k0snds25dwfiw";
12 };
13
14 buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls
15 libgcrypt zlib openssl ];
16
17 enableParallelBuilding = true;
18
19 meta = with stdenv.lib; {
20 homepage = http://nzbget.net;
21 license = licenses.gpl2Plus;
22 description = "A command line tool for downloading files from news servers";
23 maintainers = with maintainers; [ pSub ];
24 platforms = with platforms; unix;
25 };
26}