2014-03-03 22:22:12 +01:00
|
|
|
{ stdenv, fetchurl, bash, gettext }:
|
2005-12-19 11:34:01 +01:00
|
|
|
|
2012-08-10 16:38:41 +02:00
|
|
|
stdenv.mkDerivation (rec {
|
2014-10-27 01:53:56 +01:00
|
|
|
name = "libgpg-error-1.17";
|
2009-01-12 20:13:34 +01:00
|
|
|
|
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";
|
2014-10-27 01:53:56 +01:00
|
|
|
sha256 = "1dapxzxl1naghf342fwfc2w2f2c5hb9gr1a1s4n8dsqn26kybx1z";
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
2009-01-12 20:13:34 +01:00
|
|
|
|
2014-09-13 21:44:45 +02:00
|
|
|
# If architecture-dependent MO files aren't available, they're generated
|
2014-03-03 22:22:12 +01:00
|
|
|
# during build, so we need gettext for cross-builds.
|
|
|
|
crossAttrs.buildInputs = [ gettext ];
|
|
|
|
|
2009-01-12 20:13:34 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2014-04-09 01:15:38 +02:00
|
|
|
patches = [ ./no-build-timestamp.patch ];
|
|
|
|
|
2009-01-12 20:13:34 +01:00
|
|
|
meta = {
|
2014-09-21 19:43:57 +02:00
|
|
|
homepage = "https://www.gnupg.org/related_software/libgpg-error/index.html";
|
|
|
|
description = "A small library that defines common error values for all GnuPG components";
|
2009-01-12 20:13:34 +01:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-11-01 23:38:05 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2014-09-21 19:43:57 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
2011-11-01 23:38:05 +01:00
|
|
|
};
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|
2012-08-10 16:38:41 +02: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
|
|
|
|
'';
|
|
|
|
}))
|