2015-06-04 12:14:24 +03:00
|
|
|
{ lib, stdenv, fetchurl, libgpgerror, enableCapabilities ? false, libcap }:
|
2015-05-02 03:39:02 +03:00
|
|
|
|
2015-06-04 12:14:24 +03:00
|
|
|
assert enableCapabilities -> stdenv.isLinux;
|
2015-05-02 03:39:02 +03:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-02-27 18:39:25 +03:00
|
|
|
name = "libgcrypt-1.6.5";
|
2007-08-17 01:44:48 +04:00
|
|
|
|
|
|
|
src = fetchurl {
|
2008-09-09 13:06:01 +04:00
|
|
|
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
|
2016-02-27 18:39:25 +03:00
|
|
|
sha256 = "0959mwfzsxhallxdqlw359xg180ll2skxwyy35qawmfl89cbr7pl";
|
2007-08-17 01:44:48 +04:00
|
|
|
};
|
|
|
|
|
2015-10-13 21:03:22 +03:00
|
|
|
outputs = [ "dev" "out" "info" ];
|
|
|
|
outputBin = "dev";
|
|
|
|
|
2015-06-04 12:14:24 +03:00
|
|
|
buildInputs =
|
|
|
|
[ libgpgerror ]
|
|
|
|
++ lib.optional enableCapabilities libcap;
|
2008-09-09 12:48:46 +04:00
|
|
|
|
2015-05-02 03:39:02 +03: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 21:03:22 +03:00
|
|
|
postFixup = ''
|
|
|
|
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
|
2015-06-04 12:14:24 +03:00
|
|
|
'' + stdenv.lib.optionalString enableCapabilities ''
|
2015-10-11 22:59:52 +03:00
|
|
|
sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la
|
2008-09-09 12:48:46 +04:00
|
|
|
'';
|
|
|
|
|
2015-08-25 22:08:59 +03: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 03:39:02 +03:00
|
|
|
doCheck = true;
|
2014-04-09 03:15:38 +04:00
|
|
|
|
2015-06-04 12:14:24 +03:00
|
|
|
meta = {
|
2015-05-02 03:39:02 +03:00
|
|
|
homepage = https://www.gnu.org/software/libgcrypt/;
|
2014-08-24 18:21:08 +04:00
|
|
|
description = "General-pupose cryptographic library";
|
2015-06-04 12:14:24 +03:00
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
platforms = lib.platforms.all;
|
|
|
|
maintainers = [ lib.maintainers.wkennington ];
|
2015-05-02 03:39:02 +03:00
|
|
|
repositories.git = git://git.gnupg.org/libgcrypt.git;
|
2008-09-09 12:48:46 +04:00
|
|
|
};
|
2015-05-02 03:39:02 +03:00
|
|
|
}
|