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/default.nix
Yury G. Kudryashov c425763443 libgcrypt-1.3.1
svn path=/nixpkgs/trunk/; revision=9673
2007-11-14 23:03:29 +00:00

12 lines
267 B
Nix

args: with args;
stdenv.mkDerivation {
name = "libgcrypt-1.3.1";
src = fetchurl {
url = ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.3.1.tar.bz2;
sha256 = "0ip0bjhnn12lvb050j91x64wfhmpk7xlc3p93mxi9g2qczg413nz";
};
buildInputs = [libgpgerror];
}