1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libgcrypt/1.6.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

2013-12-20 22:56:26 +00:00
{ fetchurl, stdenv, libgpgerror, transfig, ghostscript, texinfo }:
stdenv.mkDerivation rec {
2015-03-09 23:55:57 +00:00
name = "libgcrypt-1.6.3";
2013-12-20 22:56:26 +00:00
src = fetchurl {
url = "mirror://gnupg/libgcrypt/${name}.tar.bz2";
2015-03-09 23:55:57 +00:00
sha256 = "0pq2nwfqgggrsh8rk84659d80vfnlkbphwqjwahccd5fjdxr3d21";
2013-12-20 22:56:26 +00:00
};
nativeBuildInputs = [ transfig ghostscript texinfo ];
propagatedBuildInputs = [ libgpgerror ];
preBuild = ''
(cd doc; make stamp-vti)
'';
doCheck = true;
crossAttrs = let
isCross64 = stdenv.cross.config == "x86_64-w64-mingw32";
in stdenv.lib.optionalAttrs isCross64 {
configureFlags = [ "--disable-asm" "--disable-padlock-support" ];
};
2013-12-20 22:56:26 +00:00
meta = {
description = "General-pupose cryptographic library";
2013-12-20 22:56:26 +00:00
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 = stdenv.lib.licenses.lgpl2Plus;
2013-12-20 22:56:26 +00:00
homepage = https://www.gnu.org/software/libgcrypt/;
repositories.git = git://git.gnupg.org/libgcrypt.git;
platforms = stdenv.lib.platforms.all;
};
}