mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 14:41:17 +00:00
38 lines
989 B
Nix
38 lines
989 B
Nix
{ 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 {
|
|
name = "gpgme-1.6.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/gpgme/${name}.tar.bz2";
|
|
sha256 = "17892sclz3yg45wbyqqrzzpq3l0icbnfl28f101b3062g8cy97dh";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "info" ];
|
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
|
|
|
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
|
|
|
nativeBuildInputs = [ pkgconfig gnupg ];
|
|
|
|
configureFlags = "--with-gpg=${gpgPath}";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.gnupg.org/related_software/gpgme";
|
|
description = "Library for making GnuPG easier to use";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.fuuzetsu ];
|
|
};
|
|
}
|