gpgme: split dev and info outputs
This commit is contained in:
parent
14332a282c
commit
f8ce44d518
@ -18,17 +18,20 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "17892sclz3yg45wbyqqrzzpq3l0icbnfl28f101b3062g8cy97dh";
|
sha256 = "17892sclz3yg45wbyqqrzzpq3l0icbnfl28f101b3062g8cy97dh";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
outputs = [ "dev" "out" "info" ];
|
||||||
|
outputBin = "dev"; # gpgme-config; not so sure about gpgme-tool
|
||||||
|
|
||||||
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
propagatedBuildInputs = [ libgpgerror glib libassuan pth ];
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig gnupg ];
|
nativeBuildInputs = [ pkgconfig gnupg ];
|
||||||
|
|
||||||
configureFlags = "--with-gpg=${gpgPath}";
|
configureFlags = "--with-gpg=${gpgPath}";
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = "http://www.gnupg.org/related_software/gpgme";
|
homepage = "http://www.gnupg.org/related_software/gpgme";
|
||||||
description = "Library for making GnuPG easier to use";
|
description = "Library for making GnuPG easier to use";
|
||||||
license = stdenv.lib.licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = platforms.unix;
|
||||||
maintainers = with stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = [ maintainers.fuuzetsu ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -395,7 +395,7 @@ let
|
|||||||
|
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
wrapProgram $out/bin/alot \
|
wrapProgram $out/bin/alot \
|
||||||
--prefix LD_LIBRARY_PATH : ${pkgs.notmuch}/lib:${pkgs.file}/lib:${pkgs.gpgme}/lib
|
--prefix LD_LIBRARY_PATH : '${lib.makeLibraryPath [ pkgs.notmuch pkgs.file pkgs.gpgme ]}'
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user