libgpgerror: update from 1.12 to 1.13

This commit is contained in:
Mateusz Kowalczyk 2014-09-21 18:43:57 +01:00
parent 3869364bd3
commit a0c282fc5b

View File

@ -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 ];
};
}