2017-08-27 22:05:28 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, libgpgerror, enableCapabilities ? false, libcap }:
|
2015-05-02 02:39:02 +02:00
|
|
|
|
2015-06-04 11:14:24 +02:00
|
|
|
assert enableCapabilities -> stdenv.isLinux;
|
2015-05-02 02:39:02 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-16 04:43:04 +02:00
|
|
|
name = "libgcrypt-${version}";
|
2017-07-19 11:20:09 +02:00
|
|
|
version = "1.8.0";
|
2007-08-16 23:44:48 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-09-09 11:06:01 +02:00
|
|
|
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
|
2017-07-19 11:20:09 +02:00
|
|
|
sha256 = "06w97l88y2c29zf8p8cg0m4k2kiiyj6pqxdl0cxigi3wp2brdr13";
|
2007-08-16 23:44:48 +02:00
|
|
|
};
|
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-13 20:03:22 +02:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2017-08-05 15:20:13 +02: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 ]
|
|
|
|
++ stdenv.lib.optional enableCapabilities libcap;
|
2008-09-09 10:48:46 +02:00
|
|
|
|
2017-08-27 22:05:28 +02:00
|
|
|
# Shouldn't be needed after 1.8.1
|
|
|
|
patches = if stdenv.isArm && stdenv.system != "armv7l-linux"
|
|
|
|
then fetchpatch {
|
|
|
|
url = "https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=patch;h=4a7aa30ae9f3ce798dd886c2f2d4164c43027748";
|
|
|
|
name = "arm.patch";
|
|
|
|
sha256 = "1dq9s0xwpbg7s5sghvssmwh4v88x733zm6c8ab3flllq8h7c8fq5";
|
|
|
|
}
|
|
|
|
else null;
|
|
|
|
|
2015-05-02 02:39:02 +02: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 20:03:22 +02:00
|
|
|
postFixup = ''
|
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
|
2015-06-04 11:14:24 +02:00
|
|
|
'' + stdenv.lib.optionalString enableCapabilities ''
|
2016-05-07 21:49:16 +02:00
|
|
|
sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la
|
2008-09-09 10:48:46 +02:00
|
|
|
'';
|
|
|
|
|
2015-08-25 21:08:59 +02: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 02:39:02 +02:00
|
|
|
doCheck = true;
|
2014-04-09 01:15:38 +02:00
|
|
|
|
2016-06-23 09:32:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2015-05-02 02:39:02 +02:00
|
|
|
homepage = https://www.gnu.org/software/libgcrypt/;
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "General-pupose cryptographic library";
|
2016-06-23 09:32:25 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = [ maintainers.wkennington maintainers.vrthra ];
|
2015-05-02 02:39:02 +02:00
|
|
|
repositories.git = git://git.gnupg.org/libgcrypt.git;
|
2008-09-09 10:48:46 +02:00
|
|
|
};
|
2015-05-02 02:39:02 +02:00
|
|
|
}
|