summary refs log tree commit diff
path: root/pkgs/development/libraries/libgpg-error
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2009-01-12 19:13:34 +0000
committerLudovic Courtès <ludo@gnu.org>2009-01-12 19:13:34 +0000
commit0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2 (patch)
treec1582f73dbb9676d78b9c09d9712df5dc3b5a0a7 /pkgs/development/libraries/libgpg-error
parentc50a4146c6edb566374b57b9f081848ab856c816 (diff)
downloadnixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar.gz
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar.bz2
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar.lz
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar.xz
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.tar.zst
nixpkgs-0d579bfcda86fd3cc99fa39e9b1ea8987292d5a2.zip
Libgpg-error 1.7.
svn path=/nixpkgs/trunk/; revision=13748
Diffstat (limited to 'pkgs/development/libraries/libgpg-error')
-rw-r--r--pkgs/development/libraries/libgpg-error/default.nix24
1 files changed, 21 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libgpg-error/default.nix b/pkgs/development/libraries/libgpg-error/default.nix
index 05128094589..7554ec0e2f9 100644
--- a/pkgs/development/libraries/libgpg-error/default.nix
+++ b/pkgs/development/libraries/libgpg-error/default.nix
@@ -1,9 +1,27 @@
 {stdenv, fetchurl}:
 
 stdenv.mkDerivation rec {
-  name = "libgpg-error-1.4";
+  name = "libgpg-error-1.7";
+
   src = fetchurl {
-    url = "mirror://gnupg/libgpg-error/${name}.tar.gz";
-    sha256 = "06fn9rshrm7r49fkjc17xg39nz37kyda2l13qqgzjg69zz2pxxpz";
+    url = "mirror://gnupg/libgpg-error/${name}.tar.bz2";
+    sha256 = "14as9cpm4k9c6lxm517s9vzqrmjmdpf8i4s41k355xc27qdk6083";
   };
+
+  doCheck = true;
+
+  meta = {
+    description = "Libgpg-error, a small library that defines common error values for all GnuPG components";
+
+    longDescription = ''
+      Libgpg-error is a small library that defines common error values
+      for all GnuPG components.  Among these are GPG, GPGSM, GPGME,
+      GPG-Agent, libgcrypt, Libksba, DirMngr, Pinentry, SmartCard
+      Daemon and possibly more in the future.
+    '';
+
+    homepage = http://gnupg.org;
+
+    license = "LGPLv2+";
+  };    
 }