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

43 lines
1.4 KiB
Nix
Raw Normal View History

2015-06-04 12:14:24 +03:00
{ lib, stdenv, fetchurl, libgpgerror, enableCapabilities ? false, libcap }:
2015-06-04 12:14:24 +03:00
assert enableCapabilities -> stdenv.isLinux;
stdenv.mkDerivation rec {
2015-09-09 02:16:56 +03:00
name = "libgcrypt-1.6.4";
src = fetchurl {
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
2015-09-09 02:16:56 +03:00
sha256 = "09k06gs27gxfha07sa9rpf4xh6mvphj9sky7n09ymx75w9zjrg69";
};
2015-06-04 12:14:24 +03: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
postInstall = ''
sed -i 's,#include <gpg-error.h>,#include "${libgpgerror.dev}/include/gpg-error.h",g' $out/include/gcrypt.h
2015-06-04 12:14:24 +03:00
'' + stdenv.lib.optionalString enableCapabilities ''
sed -i 's,\(-lcap\),-L${libcap.out}/lib \1,' $out/lib/libgcrypt.la
'';
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
'';
doCheck = true;
2015-06-04 12:14:24 +03:00
meta = {
homepage = https://www.gnu.org/software/libgcrypt/;
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 ];
repositories.git = git://git.gnupg.org/libgcrypt.git;
};
}