summary refs log tree commit diff
path: root/pkgs/development/libraries/nettle/generic.nix
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-04-19 00:48:48 -0700
committerWilliam A. Kennington III <william@wkennington.com>2015-04-20 21:34:48 -0700
commitdaadb2098adb1fb2ae2ba10355932b8844237547 (patch)
tree84d28e2401868bac33cdd5065ecdeb972494fb20 /pkgs/development/libraries/nettle/generic.nix
parente229dbdb4ea0d4bb9d2ff03448deb0ed168cf8ed (diff)
downloadnixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar.gz
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar.bz2
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar.lz
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar.xz
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.tar.zst
nixpkgs-daadb2098adb1fb2ae2ba10355932b8844237547.zip
nettle: 3.0 -> 3.1
Diffstat (limited to 'pkgs/development/libraries/nettle/generic.nix')
-rw-r--r--pkgs/development/libraries/nettle/generic.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/nettle/generic.nix b/pkgs/development/libraries/nettle/generic.nix
index 76629c80b96..6044f978402 100644
--- a/pkgs/development/libraries/nettle/generic.nix
+++ b/pkgs/development/libraries/nettle/generic.nix
@@ -22,7 +22,7 @@ stdenv.mkDerivation (rec {
   patches = stdenv.lib.optional (stdenv.system == "i686-cygwin")
               ./cygwin.patch;
 
-  meta = {
+  meta = with stdenv.lib; {
     description = "Cryptographic library";
 
     longDescription = ''
@@ -48,12 +48,12 @@ stdenv.mkDerivation (rec {
         I/O.
      '';
 
-     license = stdenv.lib.licenses.gpl2Plus;
+     license = licenses.gpl2Plus;
 
      homepage = http://www.lysator.liu.se/~nisse/nettle/;
 
-     maintainers = [ ];
-     platforms = stdenv.lib.platforms.all;
+     maintainers = with maintainers; [ wkennington ];
+     platforms = platforms.all;
   };
 }