summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2014-11-19 08:44:54 +0100
committerPascal Wittmann <mail@pascal-wittmann.de>2014-11-19 08:47:41 +0100
commit6e3318e233278d55dc7aeb1dc2579a14fdac5409 (patch)
tree1a8ece50a58cd846330016ae0d66c6ecffde68d0 /pkgs
parent01783c8dd8ecb542a1295e2efa8f840fdef07e20 (diff)
downloadnixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar.gz
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar.bz2
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar.lz
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar.xz
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.tar.zst
nixlib-6e3318e233278d55dc7aeb1dc2579a14fdac5409.zip
nzbget: update from 0.13 to 0.14 and adopt it
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/networking/nzbget/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/networking/nzbget/default.nix b/pkgs/tools/networking/nzbget/default.nix
index ec14b8ee99a3..edf7825a2d30 100644
--- a/pkgs/tools/networking/nzbget/default.nix
+++ b/pkgs/tools/networking/nzbget/default.nix
@@ -2,11 +2,11 @@
 , gnutls, libgcrypt }:
 
 stdenv.mkDerivation rec {
-  name = "nzbget-13.0";
+  name = "nzbget-14.0";
 
   src = fetchurl {
     url = "mirror://sourceforge/nzbget/${name}.tar.gz";
-    sha256 = "13lgwwrdv6ds25kj6hj0b5laqaf739n7l3j530x3640zyd254vv6";
+    sha256 = "1r9qdp17px8vq3mh18fzxhm5cqd37wcz2vv7hsxdq8rmgxhl7lj1";
   };
 
   buildInputs = [ pkgconfig libxml2 ncurses libsigcxx libpar2 gnutls libgcrypt ];
@@ -15,9 +15,10 @@ stdenv.mkDerivation rec {
 
   NIX_LDFLAGS = "-lz";
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://nzbget.sourceforge.net/;
-    license = stdenv.lib.licenses.gpl2Plus;
+    license = licenses.gpl2Plus;
     description = "A command line tool for downloading files from news servers";
+    maintainers = with maintainers; [ pSub ];
   };
 }