2018-02-25 03:51:22 +00:00
|
|
|
{ stdenv, fetchurl, gettext, libgpgerror, enableCapabilities ? false, libcap
|
|
|
|
, buildPackages
|
|
|
|
}:
|
2015-05-02 01:39:02 +01:00
|
|
|
|
2015-06-04 10:14:24 +01:00
|
|
|
assert enableCapabilities -> stdenv.isLinux;
|
2015-05-02 01:39:02 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-16 03:43:04 +01:00
|
|
|
name = "libgcrypt-${version}";
|
2018-10-26 19:24:03 +01:00
|
|
|
version = "1.8.4";
|
2007-08-16 22:44:48 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-09-09 10:06:01 +01:00
|
|
|
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
|
2018-10-26 19:24:03 +01:00
|
|
|
sha256 = "09r27ywj9zplq6n9qw3mn7zmvf6y2jdmwx5d1kg8yqkj0qx18f7n";
|
2007-08-16 22:44:48 +01:00
|
|
|
};
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-13 19:03:22 +01:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2017-08-05 14:20:13 +01:00
|
|
|
# The CPU Jitter random number generator must not be compiled with
|
|
|
|
# optimizations and the optimize -O0 pragma only works for gcc.
|
|
|
|
# The build enables -O2 by default for everything else.
|
|
|
|
hardeningDisable = stdenv.lib.optional stdenv.cc.isClang "fortify";
|
|
|
|
|
2018-02-25 13:24:34 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-02-25 03:51:22 +00:00
|
|
|
|
2017-08-05 14:20:13 +01:00
|
|
|
buildInputs = [ libgpgerror ]
|
2018-02-05 20:17:24 +00:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin gettext
|
2017-08-05 14:20:13 +01:00
|
|
|
++ stdenv.lib.optional enableCapabilities libcap;
|
2008-09-09 09:48:46 +01:00
|
|
|
|
2018-07-29 21:48:24 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2018-02-25 03:51:22 +00:00
|
|
|
# This is intentional: gpg-error-config is a shell script that will work during the build
|
|
|
|
mkdir -p "$NIX_BUILD_TOP"/bin
|
|
|
|
ln -s ${libgpgerror.dev}/bin/gpg-error-config "$NIX_BUILD_TOP/bin"
|
|
|
|
export PATH="$NIX_BUILD_TOP/bin:$PATH"
|
2018-02-25 13:24:34 +00:00
|
|
|
'';
|
2018-02-25 03:51:22 +00:00
|
|
|
|
2015-05-02 01:39:02 +01:00
|
|
|
# Make sure libraries are correct for .pc and .la files
|
|
|
|
# Also make sure includes are fixed for callers who don't use libgpgcrypt-config
|
2015-10-13 19:03:22 +01:00
|
|
|
postFixup = ''
|
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
|
2015-06-04 10:14:24 +01:00
|
|
|
'' + stdenv.lib.optionalString enableCapabilities ''
|
2016-05-07 20:49:16 +01:00
|
|
|
sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la
|
2008-09-09 09:48:46 +01:00
|
|
|
'';
|
|
|
|
|
2015-08-25 20:08:59 +01:00
|
|
|
# TODO: figure out why this is even necessary and why the missing dylib only crashes
|
|
|
|
# random instead of every test
|
|
|
|
preCheck = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
mkdir -p $out/lib
|
|
|
|
cp src/.libs/libgcrypt.20.dylib $out/lib
|
|
|
|
'';
|
|
|
|
|
2018-06-18 01:16:35 +01:00
|
|
|
doCheck = true;
|
2014-04-09 00:15:38 +01:00
|
|
|
|
2016-06-23 08:32:25 +01:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-02 01:39:02 +01:00
|
|
|
homepage = https://www.gnu.org/software/libgcrypt/;
|
2017-09-02 14:56:11 +01:00
|
|
|
description = "General-purpose cryptographic library";
|
2016-06-23 08:32:25 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.wkennington maintainers.vrthra ];
|
2015-05-02 01:39:02 +01:00
|
|
|
repositories.git = git://git.gnupg.org/libgcrypt.git;
|
2008-09-09 09:48:46 +01:00
|
|
|
};
|
2015-05-02 01:39:02 +01:00
|
|
|
}
|