f4e365b3a0
svn path=/nixpkgs/trunk/; revision=18922
37 lines
969 B
Nix
37 lines
969 B
Nix
{ fetchurl, stdenv, libgpgerror }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libgcrypt-1.4.5";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
|
|
sha256 = "0h4ypld775rm1g15v134pkq9wc6ixszn6766gqv7bpi4ady90vs9";
|
|
};
|
|
|
|
propagatedBuildInputs = [ libgpgerror ];
|
|
|
|
doCheck = true;
|
|
|
|
# For some reason the tests don't find `libgpg-error.so'.
|
|
checkPhase = ''
|
|
LD_LIBRARY_PATH="${libgpgerror}/lib:$LD_LIBRARY_PATH" \
|
|
make check
|
|
'';
|
|
|
|
meta = {
|
|
description = "GNU Libgcrypt, a general-pupose cryptographic library";
|
|
|
|
longDescription = ''
|
|
GNU Libgcrypt is a general purpose cryptographic library based on
|
|
the code from GnuPG. It provides functions for all
|
|
cryptographic building blocks: symmetric ciphers, hash
|
|
algorithms, MACs, public key algorithms, large integer
|
|
functions, random numbers and a lot of supporting functions.
|
|
'';
|
|
|
|
license = "LGPLv2+";
|
|
|
|
homepage = http://gnupg.org/;
|
|
};
|
|
}
|