nixpkgs/pkgs/development/libraries/libgcrypt/default.nix

47 lines
1.5 KiB
Nix
Raw Normal View History

2015-06-04 09:14:24 +00:00
{ lib, stdenv, fetchurl, libgpgerror, enableCapabilities ? false, libcap }:
2015-06-04 09:14:24 +00:00
assert enableCapabilities -> stdenv.isLinux;
stdenv.mkDerivation rec {
2016-04-16 02:43:04 +00:00
name = "libgcrypt-${version}";
2017-01-29 16:19:07 +00:00
version = "1.7.6";
src = fetchurl {
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
2017-01-29 16:19:07 +00:00
sha256 = "1g05prhgqw4ryd0w433q8nhds0h93kf47hfjagi2r7dghkpaysk2";
};
outputs = [ "out" "dev" "info" ];
2015-10-13 18:03:22 +00:00
outputBin = "dev";
2015-06-04 09:14:24 +00:00
buildInputs =
[ libgpgerror ]
++ lib.optional enableCapabilities libcap;
# 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 18:03:22 +00:00
postFixup = ''
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' "$dev/include/gcrypt.h"
2015-06-04 09:14:24 +00:00
'' + stdenv.lib.optionalString enableCapabilities ''
sed -i 's,\(-lcap\),-L${libcap.lib}/lib \1,' $out/lib/libgcrypt.la
'';
2015-08-25 19:08:59 +00: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
'';
doCheck = true;
2016-06-23 07:32:25 +00:00
meta = with stdenv.lib; {
homepage = https://www.gnu.org/software/libgcrypt/;
description = "General-pupose cryptographic library";
2016-06-23 07:32:25 +00:00
license = licenses.lgpl2Plus;
platforms = platforms.all;
maintainers = [ maintainers.wkennington maintainers.vrthra ];
repositories.git = git://git.gnupg.org/libgcrypt.git;
};
}