2018-02-05 20:17:24 +00:00
|
|
|
{ stdenv, fetchurl, gettext, libgpgerror, enableCapabilities ? false, libcap }:
|
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}";
|
2017-12-21 10:57:23 +00:00
|
|
|
version = "1.8.2";
|
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";
|
2017-12-21 10:57:23 +00:00
|
|
|
sha256 = "01sca9m8hm6b5v8hmqsfdjhyz013869p1f0fxw9ln52qfnp4q1n8";
|
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";
|
|
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2015-05-02 01:39:02 +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
|
|
|
}
|