about summary refs log tree commit diff
path: root/pkgs/development/libraries/libgcrypt/default.nix
blob: bb71e8f8499c757281437dc7ccaf8b7aa8b30d30 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{stdenv, fetchurl, libgpgerror}:

stdenv.mkDerivation {
  name = "libgcrypt-1.2.4";
  src = fetchurl {
    url = ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.2.4.tar.gz;
    sha256 = "1v6rbx2jpwvh9jwf8n91da2p66v2gzmym6s3h1fidfdy7qqkyg6g";
  };

  buildInputs = [libgpgerror];
}