2015-06-04 10:14:24 +01:00
|
|
|
{ lib, stdenv, fetchurl, 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-07-19 10:20:09 +01:00
|
|
|
version = "1.8.0";
|
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-07-19 10:20:09 +01:00
|
|
|
sha256 = "06w97l88y2c29zf8p8cg0m4k2kiiyj6pqxdl0cxigi3wp2brdr13";
|
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";
|
|
|
|
|
2015-06-04 10:14:24 +01:00
|
|
|
buildInputs =
|
|
|
|
[ libgpgerror ]
|
|
|
|
++ 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/;
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "General-pupose 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
|
|
|
}
|