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

stdenv.mkDerivation {
  name = "gpgme-1.0.3";
  src = fetchurl {
    url = ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.0.3.tar.gz;
    md5 = "4d33cbdf844fcee1c724e4cf2a32dd11";
  };
  buildInputs = [libgpgerror gnupg];
}