summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2013-05-22 12:27:08 +0200
committerPeter Simons <simons@cryp.to>2013-05-22 12:27:08 +0200
commitbce5681e533fa206cf6720c98a15d7e1f4e217e1 (patch)
treed40675735961261ed8258e7d0b1d76a700087cd0 /pkgs/tools/security
parent398e4a15b0b26e4d3fda3e23b71f9b54a2fbd67d (diff)
downloadnixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar.gz
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar.bz2
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar.lz
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar.xz
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.tar.zst
nixlib-bce5681e533fa206cf6720c98a15d7e1f4e217e1.zip
gnupg: update to version 2.0.20
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/gnupg/default.nix11
1 files changed, 4 insertions, 7 deletions
diff --git a/pkgs/tools/security/gnupg/default.nix b/pkgs/tools/security/gnupg/default.nix
index ba680cb8ba43..b94e2e50a40c 100644
--- a/pkgs/tools/security/gnupg/default.nix
+++ b/pkgs/tools/security/gnupg/default.nix
@@ -13,11 +13,11 @@ assert useUsb -> (libusb != null);
 assert useCurl -> (curl != null);
 
 stdenv.mkDerivation rec {
-  name = "gnupg-2.0.19";
+  name = "gnupg-2.0.20";
 
   src = fetchurl {
     url = "mirror://gnupg/gnupg/${name}.tar.bz2";
-    sha256 = "08n636sfffs5qvg9ppiprvsh00q0dmdw425psg3m3nssja53m8pg";
+    sha256 = "16mp0j5inrcqcb3fxbn0b3aamascy3n923wiy0y8marc0rzrp53f";
   };
 
   buildInputs = [ readline zlib libgpgerror libgcrypt libassuan libksba pth ]
@@ -35,7 +35,9 @@ stdenv.mkDerivation rec {
   doCheck = true;
 
   meta = {
+    homepage = "http://gnupg.org/";
     description = "GNU Privacy Guard (GnuPG), GNU Project's implementation of the OpenPGP standard";
+    license = stdenv.lib.licenses.gpl3Plus;
 
     longDescription = ''
       GnuPG is the GNU project's complete and free implementation of
@@ -49,12 +51,7 @@ stdenv.mkDerivation rec {
       S/MIME.
     '';
 
-    homepage = http://gnupg.org/;
-
-    license = "GPLv3+";
-
     maintainers = with stdenv.lib.maintainers; [ ludo urkud ];
-
     platforms = stdenv.lib.platforms.all;
   };
 }