2019-08-31 12:13:30 +01:00
|
|
|
{ stdenv, lib, buildPackages, fetchurl, gettext, fetchpatch
|
2018-03-22 22:18:07 +00:00
|
|
|
, genPosixLockObjOnly ? false
|
2018-02-25 01:51:04 +00:00
|
|
|
}: let
|
2018-03-22 22:18:07 +00:00
|
|
|
genPosixLockObjOnlyAttrs = lib.optionalAttrs genPosixLockObjOnly {
|
2018-02-25 01:51:04 +00:00
|
|
|
buildPhase = ''
|
|
|
|
cd src
|
|
|
|
make gen-posix-lock-obj
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
install -m755 gen-posix-lock-obj $out/bin
|
|
|
|
'';
|
2005-12-19 10:34:01 +00:00
|
|
|
|
2018-02-25 01:51:04 +00:00
|
|
|
outputs = [ "out" ];
|
|
|
|
outputBin = "out";
|
|
|
|
};
|
|
|
|
in stdenv.mkDerivation (rec {
|
2019-03-21 20:57:53 +00:00
|
|
|
pname = "libgpg-error";
|
|
|
|
version = "1.36";
|
2009-01-12 19:13:34 +00:00
|
|
|
|
2005-12-19 10:34:01 +00:00
|
|
|
src = fetchurl {
|
2019-03-21 20:57:53 +00:00
|
|
|
url = "mirror://gnupg/${pname}/${pname}-${version}.tar.bz2";
|
|
|
|
sha256 = "0z696dmhfxm2n6pmr8b857wwljq9h633yi99bhbn7h88f91rigds";
|
2005-12-19 10:34:01 +00:00
|
|
|
};
|
2009-01-12 19:13:34 +00:00
|
|
|
|
2019-08-31 12:13:30 +01:00
|
|
|
# Remove gawk buildfix on > 1.36
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://dev.gnupg.org/rE7865041c77f4f7005282f10f9b6666b19072fbdf?diff=1";
|
|
|
|
sha256 = "0hs4rpwqq2afpsbqliq451jjaysq2iyzxvd9sx3992b4vnllgqqq";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-01-31 00:19:23 +00:00
|
|
|
postPatch = ''
|
2019-08-31 12:13:30 +01:00
|
|
|
# Remove on > 1.36 release: gawk upgrade fix didn't include Makefile regeneration
|
|
|
|
sed 's/-v namespace=errnos_/-v pkg_namespace=errnos_/' -i src/Makefile.in
|
|
|
|
|
2018-01-31 00:19:23 +00:00
|
|
|
sed '/BUILD_TIMESTAMP=/s/=.*/=1970-01-01T00:01+0000/' -i ./configure
|
2018-08-31 21:00:35 +01:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform.isAarch32 && stdenv.buildPlatform != stdenv.hostPlatform) ''
|
2018-07-14 19:43:43 +01:00
|
|
|
ln -s lock-obj-pub.arm-unknown-linux-gnueabi.h src/syscfg/lock-obj-pub.linux-gnueabihf.h
|
2018-12-04 23:25:54 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform.isx86_64 && stdenv.hostPlatform.isMusl) ''
|
2018-01-31 00:19:23 +00:00
|
|
|
ln -s lock-obj-pub.x86_64-pc-linux-musl.h src/syscfg/lock-obj-pub.linux-musl.h
|
2018-12-04 23:25:54 +00:00
|
|
|
'' + lib.optionalString (stdenv.hostPlatform.isAarch32 && stdenv.hostPlatform.isMusl) ''
|
|
|
|
ln -s src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h src/syscfg/lock-obj-pub.arm-unknown-linux-musleabihf.h
|
|
|
|
ln -s src/syscfg/lock-obj-pub.arm-unknown-linux-gnueabi.h src/syscfg/lock-obj-pub.linux-musleabihf.h
|
2018-01-31 00:19:23 +00:00
|
|
|
'';
|
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.
|
2018-01-23 17:38:46 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ gettext ];
|
2014-03-03 21:22:12 +00:00
|
|
|
|
2014-11-01 19:18:45 +00:00
|
|
|
postConfigure =
|
2018-03-22 22:18:07 +00:00
|
|
|
lib.optionalString stdenv.isSunOS
|
2014-11-01 19:18:45 +00:00
|
|
|
# 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
|
|
|
|
2018-01-23 17:38:46 +00:00
|
|
|
doCheck = true; # not cross
|
2014-04-09 00:15:38 +01:00
|
|
|
|
2015-10-11 20:59:52 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://www.gnupg.org/related_software/libgpg-error/index.html;
|
2014-09-21 18:43:57 +01:00
|
|
|
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
|
|
|
};
|
2018-02-25 01:51:04 +00:00
|
|
|
} // genPosixLockObjOnlyAttrs)
|