nixpkgs/pkgs/tools/networking/nzbget/default.nix
Eelco Dolstra 5749281c0c * nzbget updated to 0.8.0.
svn path=/nixpkgs/trunk/; revision=34077
2012-05-12 23:11:18 +00:00

26 lines
642 B
Nix

{ stdenv, fetchurl, pkgconfig, libxml2, ncurses, libsigcxx, libpar2
, gnutls, libgcrypt }:
stdenv.mkDerivation rec {
name = "nzbget-0.8.0";
src = fetchurl {
url = "mirror://sourceforge/nzbget/${name}.tar.gz";
sha256 = "15bxsxdbkml9cqpy6zxgv78ff69l8qrv8r201gmzvylpc1ckjsb4";
};
buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls libgcrypt ];
postInstall =
''
mkdir -p $out/etc
cp nzbget.conf.example $out/etc/
'';
meta = {
homepage = http://nzbget.sourceforge.net/;
license = "GPLv2+";
description = "A command line tool for downloading files from news servers";
};
}