2018-02-24 19:51:22 -08:00
|
|
|
{ stdenv, fetchurl, gettext, libgpgerror, enableCapabilities ? false, libcap
|
|
|
|
, buildPackages
|
|
|
|
}:
|
2015-05-01 17:39:02 -07:00
|
|
|
|
2015-06-04 02:14:24 -07:00
|
|
|
assert enableCapabilities -> stdenv.isLinux;
|
2015-05-01 17:39:02 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "libgcrypt";
|
2020-11-02 17:54:20 -08:00
|
|
|
version = "1.8.7";
|
2007-08-16 14:44:48 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "mirror://gnupg/libgcrypt/${pname}-${version}.tar.bz2";
|
2020-11-02 17:54:20 -08:00
|
|
|
sha256 = "0j27jxhjay78by940d64778nxwbysxynv5mq6iq1nmlrh810zdq3";
|
2007-08-16 14:44:48 -07:00
|
|
|
};
|
|
|
|
|
2016-08-28 17:30:01 -07:00
|
|
|
outputs = [ "out" "dev" "info" ];
|
2015-10-13 11:03:22 -07:00
|
|
|
outputBin = "dev";
|
|
|
|
|
2017-08-05 06:20:13 -07: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 05:24:34 -08:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-02-24 19:51:22 -08:00
|
|
|
|
2017-08-05 06:20:13 -07:00
|
|
|
buildInputs = [ libgpgerror ]
|
2018-02-05 12:17:24 -08:00
|
|
|
++ stdenv.lib.optional stdenv.isDarwin gettext
|
2017-08-05 06:20:13 -07:00
|
|
|
++ stdenv.lib.optional enableCapabilities libcap;
|
2008-09-09 01:48:46 -07:00
|
|
|
|
2019-10-31 03:27:43 -07:00
|
|
|
configureFlags = [ "--with-libgpg-error-prefix=${libgpgerror.dev}" ]
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isMusl "--disable-asm";
|
2018-02-24 19:51:22 -08:00
|
|
|
|
2020-05-14 14:12:06 -07:00
|
|
|
# Necessary to generate correct assembly when compiling for aarch32 on
|
|
|
|
# aarch64
|
|
|
|
configurePlatforms = [ "host" "build" ];
|
|
|
|
|
2020-12-26 02:27:37 -08:00
|
|
|
postConfigure = ''
|
|
|
|
sed -i configure \
|
|
|
|
-e 's/NOEXECSTACK_FLAGS=$/NOEXECSTACK_FLAGS="-Wa,--noexecstack"/'
|
|
|
|
'';
|
|
|
|
|
2015-05-01 17:39:02 -07: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 11:03:22 -07:00
|
|
|
postFixup = ''
|
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
|
2015-06-04 02:14:24 -07:00
|
|
|
'' + stdenv.lib.optionalString enableCapabilities ''
|
2016-05-07 12:49:16 -07:00
|
|
|
sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la
|
2008-09-09 01:48:46 -07:00
|
|
|
'';
|
|
|
|
|
2015-08-25 12:08:59 -07: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-17 17:16:35 -07:00
|
|
|
doCheck = true;
|
2014-04-08 16:15:38 -07:00
|
|
|
|
2016-06-23 00:32:25 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.gnu.org/software/libgcrypt/";
|
2017-09-02 06:56:11 -07:00
|
|
|
description = "General-purpose cryptographic library";
|
2016-06-23 00:32:25 -07:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
platforms = platforms.all;
|
2019-01-26 02:01:09 -08:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
2020-03-31 18:11:51 -07:00
|
|
|
repositories.git = "git://git.gnupg.org/libgcrypt.git";
|
2008-09-09 01:48:46 -07:00
|
|
|
};
|
2015-05-01 17:39:02 -07:00
|
|
|
}
|