summary refs log tree commit diff
path: root/pkgs/development/libraries/libgpg-error
diff options
context:
space:
mode:
authorMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-21 18:43:57 +0100
committerMateusz Kowalczyk <fuuzetsu@fuuzetsu.co.uk>2014-09-21 18:45:29 +0100
commita0c282fc5b3256ab26e23cf8d72bc1fea07c87f3 (patch)
tree986c457a81b962ad754feaa4fe859caaaee14cc1 /pkgs/development/libraries/libgpg-error
parent3869364bd39fb2073be3da1821f9dcd5fc90d993 (diff)
downloadnixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar.gz
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar.bz2
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar.lz
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar.xz
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.tar.zst
nixlib-a0c282fc5b3256ab26e23cf8d72bc1fea07c87f3.zip
libgpgerror: update from 1.12 to 1.13
Diffstat (limited to 'pkgs/development/libraries/libgpg-error')
-rw-r--r--pkgs/development/libraries/libgpg-error/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/libraries/libgpg-error/default.nix b/pkgs/development/libraries/libgpg-error/default.nix
index 7a595dbbe46e..90a72dbd1265 100644
--- a/pkgs/development/libraries/libgpg-error/default.nix
+++ b/pkgs/development/libraries/libgpg-error/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, bash, gettext }:
 
 stdenv.mkDerivation (rec {
-  name = "libgpg-error-1.12";
+  name = "libgpg-error-1.13";
 
   src = fetchurl {
     url = "mirror://gnupg/libgpg-error/${name}.tar.bz2";
-    sha256 = "0pz58vr12qihq2f0bypjxsb6cf6ajq5258fmfm8s6lvwm3b9xz6a";
+    sha256 = "02lv5h865f8if391xjp3njg04k0l4x2pwjkcdbzcwilail1skazq";
   };
 
   # If architecture-dependent MO files aren't available, they're generated
@@ -15,7 +15,8 @@ stdenv.mkDerivation (rec {
   doCheck = true;
 
   meta = {
-    description = "Libgpg-error, a small library that defines common error values for all GnuPG components";
+    homepage = "https://www.gnupg.org/related_software/libgpg-error/index.html";
+    description = "A small library that defines common error values for all GnuPG components";
 
     longDescription = ''
       Libgpg-error is a small library that defines common error values
@@ -24,10 +25,9 @@ stdenv.mkDerivation (rec {
       Daemon and possibly more in the future.
     '';
 
-    homepage = http://gnupg.org;
-
     license = stdenv.lib.licenses.lgpl2Plus;
     platforms = stdenv.lib.platforms.all;
+    maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
   };
 }