2017-10-17 22:40:51 +02:00
|
|
|
{ stdenv, buildPackages, fetchurl, gettext }:
|
2005-12-19 11:34:01 +01:00
|
|
|
|
2014-11-01 20:18:45 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-23 09:34:35 +02:00
|
|
|
name = "libgpg-error-${version}";
|
2017-03-02 10:07:59 +01:00
|
|
|
version = "1.27";
|
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";
|
2017-03-02 10:07:59 +01:00
|
|
|
sha256 = "1li95ni122fzinzlmxbln63nmgij63irxfvi52ws4zfbzv3am4sg";
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
2009-01-12 20:13:34 +01:00
|
|
|
|
2014-09-21 08:59:13 +02:00
|
|
|
postPatch = "sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure";
|
2014-11-01 20:18:45 +01:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-11 21:59:52 +02:00
|
|
|
outputBin = "dev"; # deps want just the lib, most likely
|
|
|
|
|
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.
|
2018-01-23 18:38:46 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ gettext ];
|
2014-03-03 22:22:12 +01:00
|
|
|
|
2014-11-01 20:18:45 +01: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 20:13:34 +01:00
|
|
|
|
2018-01-23 18:38:46 +01:00
|
|
|
doCheck = true; # not cross
|
2014-04-09 01:15:38 +02:00
|
|
|
|
2015-10-11 21:59:52 +02:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 22:03:30 +02:00
|
|
|
homepage = https://www.gnupg.org/related_software/libgpg-error/index.html;
|
2014-09-21 19:43:57 +02:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2015-10-11 21:59:52 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2016-06-23 09:34:35 +02:00
|
|
|
maintainers = [ maintainers.fuuzetsu maintainers.vrthra ];
|
2011-11-01 23:38:05 +01:00
|
|
|
};
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|