2012-11-15 11:18:38 +01:00
|
|
|
{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
|
|
|
|
, useGnupg1 ? false, gnupg1 ? null }:
|
2005-12-19 11:34:01 +01:00
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
assert useGnupg1 -> gnupg1 != null;
|
|
|
|
assert !useGnupg1 -> gnupg != null;
|
|
|
|
|
|
|
|
let
|
|
|
|
gpgPath = if useGnupg1 then
|
|
|
|
"${gnupg1}/bin/gpg"
|
|
|
|
else
|
|
|
|
"${gnupg}/bin/gpg2";
|
|
|
|
in
|
2010-05-19 22:58:56 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-04-09 12:17:29 +02:00
|
|
|
name = "gpgme-1.3.1";
|
2011-07-21 19:32:35 +02:00
|
|
|
|
2005-12-19 11:34:01 +01:00
|
|
|
src = fetchurl {
|
2010-05-19 22:58:56 +02:00
|
|
|
url = "ftp://ftp.gnupg.org/gcrypt/gpgme/${name}.tar.bz2";
|
2012-04-09 12:17:29 +02:00
|
|
|
sha256 = "1m7l7nicn6gd952cgspv9xr8whqivbg33nbg8kbpj3dffnl2gvqm";
|
2005-12-19 11:34:01 +01:00
|
|
|
};
|
2011-07-21 19:32:35 +02:00
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
2011-06-07 23:50:36 +02:00
|
|
|
|
2011-07-21 19:32:35 +02:00
|
|
|
buildNativeInputs = [ pkgconfig ];
|
2011-06-07 23:50:36 +02:00
|
|
|
|
2012-11-15 11:18:38 +01:00
|
|
|
configureFlags = "--with-gpg=${gpgPath}";
|
2005-12-19 11:34:01 +01:00
|
|
|
}
|