1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/nzbget/default.nix

25 lines
732 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
2015-05-29 18:07:20 +01:00
, gnutls, libgcrypt, zlib }:
stdenv.mkDerivation rec {
name = "nzbget-${version}";
2015-12-12 10:48:45 +00:00
version = "16.4";
src = fetchurl {
url = "http://github.com/nzbget/nzbget/releases/download/v${version}/${name}-src.tar.gz";
2015-12-12 10:48:45 +00:00
sha256 = "03sdzxxsjpxp82jpk593xls96yk29989z05j73jah21dbpkkx7lf";
};
2015-05-29 18:07:20 +01:00
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls
libgcrypt zlib ];
2013-01-06 21:29:16 +00:00
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://nzbget.net;
license = licenses.gpl2Plus;
description = "A command line tool for downloading files from news servers";
maintainers = with maintainers; [ pSub ];
};
}