2014-11-01 19:18:45 +00:00
|
|
|
{ stdenv, fetchurl, gettext }:
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2014-11-01 19:18:45 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-23 08:34:35 +01:00
|
|
|
name = "libgpg-error-${version}";
|
2017-03-02 09:07:59 +00:00
|
|
|
version = "1.27";
|
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";
|
2017-03-02 09:07:59 +00:00
|
|
|
sha256 = "1li95ni122fzinzlmxbln63nmgij63irxfvi52ws4zfbzv3am4sg";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2009-01-12 19:13:34 +00:00
|
|
|
|
2014-09-21 07:59:13 +01:00
|
|
|
postPatch = "sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure";
|
2014-11-01 19:18:45 +00:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-11 20:59:52 +01:00
|
|
|
outputBin = "dev"; # deps want just the lib, most likely
|
|
|
|
|
2014-09-13 20:44:45 +01:00
|
|
|
# If architecture-dependent MO files aren't available, they're generated
|
2014-03-03 21:22:12 +00:00
|
|
|
# during build, so we need gettext for cross-builds.
|
|
|
|
crossAttrs.buildInputs = [ gettext ];
|
|
|
|
|
2014-11-01 19:18:45 +00:00
|
|
|
postConfigure =
|
|
|
|
stdenv.lib.optionalString 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.
|
|
|
|
"${stdenv.shell} config.status";
|
2009-01-12 19:13:34 +00:00
|
|
|
|
2014-11-01 19:18:45 +00:00
|
|
|
doCheck = true;
|
2014-04-09 00:15:38 +01:00
|
|
|
|
2015-10-11 20:59:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-09-21 18:43:57 +01: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 19:13:34 +00: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.
|
|
|
|
'';
|
|
|
|
|
2015-10-11 20:59:52 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2016-06-23 08:34:35 +01:00
|
|
|
maintainers = [ maintainers.fuuzetsu maintainers.vrthra ];
|
2011-11-01 22:38:05 +00:00
|
|
|
};
|
2005-12-19 10:34:01 +00:00
|
|
|
}
|
2012-08-10 15:38:41 +01:00
|
|
|
|