gpgme: split dev and info outputs

This commit is contained in:
Vladimír Čunát
2015-10-13 20:19:00 +02:00
parent 14332a282c
commit f8ce44d518
2 changed files with 8 additions and 5 deletions
+7 -4
View File
@@ -18,17 +18,20 @@ stdenv.mkDerivation rec {
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 = {
meta = with stdenv.lib; {
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 ];
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = [ maintainers.fuuzetsu ];
};
}