2012-08-10 15:38:41 +01:00
|
|
|
{ stdenv, fetchurl, bash }:
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2012-08-10 15:38:41 +01:00
|
|
|
stdenv.mkDerivation (rec {
|
2013-12-18 15:42:29 +00:00
|
|
|
name = "libgpg-error-1.12";
|
2009-01-12 19:13:34 +00:00
|
|
|
|
2005-12-19 10:34:01 +00:00
|
|
|
src = fetchurl {
|
2009-01-12 19:13:34 +00:00
|
|
|
url = "mirror://gnupg/libgpg-error/${name}.tar.bz2";
|
2013-12-18 15:42:29 +00:00
|
|
|
sha256 = "0pz58vr12qihq2f0bypjxsb6cf6ajq5258fmfm8s6lvwm3b9xz6a";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2009-01-12 19:13:34 +00: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+";
|
2011-11-01 22:38:05 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|
2012-08-10 15:38:41 +01:00
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
(stdenv.lib.optionalAttrs stdenv.isSunOS {
|
|
|
|
# For some reason, /bin/sh on OpenIndiana leads to this at the end of the
|
|
|
|
# `config.status' run:
|
|
|
|
# ./config.status[1401]: shift: (null): bad number
|
|
|
|
# (See <http://hydra.nixos.org/build/2931046/nixlog/1/raw>.)
|
|
|
|
# Thus, re-run it with Bash.
|
|
|
|
postConfigure =
|
|
|
|
'' ${bash}/bin/sh config.status
|
|
|
|
'';
|
|
|
|
}))
|