summary refs log tree commit diff
path: root/pkgs/tools/security/gnupg1
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2010-10-19 08:09:28 +0000
committerLudovic Courtès <ludo@gnu.org>2010-10-19 08:09:28 +0000
commitaebda198cc285e59792fb5b76e74c5a48f57daf9 (patch)
treecf245ae61cbd480760f64063c4b44a8b5df31e16 /pkgs/tools/security/gnupg1
parent8846577c78d1bd8030bf6b35b43ccfeb87be8662 (diff)
downloadnixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar.gz
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar.bz2
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar.lz
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar.xz
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.tar.zst
nixpkgs-aebda198cc285e59792fb5b76e74c5a48f57daf9.zip
GnuPG 1.4.11.
svn path=/nixpkgs/trunk/; revision=24357
Diffstat (limited to 'pkgs/tools/security/gnupg1')
-rw-r--r--pkgs/tools/security/gnupg1/default.nix12
1 files changed, 8 insertions, 4 deletions
diff --git a/pkgs/tools/security/gnupg1/default.nix b/pkgs/tools/security/gnupg1/default.nix
index dc396d9f35b..0674fc4e480 100644
--- a/pkgs/tools/security/gnupg1/default.nix
+++ b/pkgs/tools/security/gnupg1/default.nix
@@ -15,11 +15,11 @@ let
 in
 
 stdenv.mkDerivation rec {
-  name = "gnupg-1.4.10";
+  name = "gnupg-1.4.11";
 
   src = fetchurl {
     url = "mirror://gnupg/gnupg/${name}.tar.bz2";
-    sha256 = "0f5v8c8fkxcnrlmnijaq2sqfqq6xhmbyi2p44pj98y6n6927z452";
+    sha256 = "1xkfxr4z2fy9d5d6hj4lzv854lk227kgv6qb2w0sam752snfx36i";
   };
 
   buildInputs = [ readline bzip2 ];
@@ -28,9 +28,13 @@ stdenv.mkDerivation rec {
     ''
       gunzip < ${idea} > ./cipher/idea.c
     '';
-  
+
+  doCheck = true;
+
   meta = {
-    description = "A free implementation of the OpenPGP standard for encrypting and signing data";
+    description = "GnuPG, a free implementation of the OpenPGP standard for encrypting and signing data";
     homepage = http://www.gnupg.org/;
+    license = "GPLv3+";
+    platforms = stdenv.lib.platforms.gnu; # arbitrary choice
   };
 }