2005-12-19 11:34:01 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
2008-09-09 11:06:01 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2009-01-12 20:13:34 +01:00
|
|
|
name = "libgpg-error-1.7";
|
|
|
|
|
2005-12-19 11:34:01 +01:00
|
|
|
src = fetchurl {
|
2009-01-12 20:13:34 +01:00
|
|
|
url = "mirror://gnupg/libgpg-error/${name}.tar.bz2";
|
|
|
|
sha256 = "14as9cpm4k9c6lxm517s9vzqrmjmdpf8i4s41k355xc27qdk6083";
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
2009-01-12 20:13:34 +01:00
|
|
|
|
|
|
|
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+";
|
|
|
|
};
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|