nixpkgs/pkgs/development/libraries/gpgme/default.nix

35 lines
908 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libgpgerror, gnupg, pkgconfig, glib, pth, libassuan
, useGnupg1 ? false, gnupg1 ? null }:
assert useGnupg1 -> gnupg1 != null;
assert !useGnupg1 -> gnupg != null;
let
gpgPath = if useGnupg1 then
"${gnupg1}/bin/gpg"
else
"${gnupg}/bin/gpg2";
in
stdenv.mkDerivation rec {
2015-09-04 23:22:44 +02:00
name = "gpgme-1.6.0";
2014-09-21 19:27:41 +02:00
src = fetchurl {
2015-01-24 21:56:04 +01:00
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
2015-09-04 23:22:44 +02:00
sha256 = "17892sclz3yg45wbyqqrzzpq3l0icbnfl28f101b3062g8cy97dh";
};
2014-09-21 19:27:41 +02:00
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
nativeBuildInputs = [ pkgconfig gnupg ];
configureFlags = "--with-gpg=${gpgPath}";
2014-09-21 19:27:41 +02:00
meta = {
homepage = "http://www.gnupg.org/related_software/gpgme";
description = "Library for making GnuPG easier to use";
license = stdenv.lib.licenses.gpl2;
platforms = stdenv.lib.platforms.unix;
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
};
}