pinentry: fix build /cc wkennington

This commit is contained in:
Domen Kožar 2015-03-26 10:07:05 +01:00
parent 61e573fcb6
commit 8feda47bee
3 changed files with 4 additions and 4 deletions

View file

@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
configureFlags = [
(mkWith (libcap != null) "libcap")
(mkWith (hasX) "x")
(mkEnable (ncurses != null) "pinentry-curses")
(mkEnable true "pinentry-tty")
(mkEnable (gtk2 != null) "pinentry-gtk2")
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
homepage = "http://gnupg.org/aegypten2/";
description = "GnuPG's interface to passphrase input";
license = stdenv.lib.licenses.gpl2Plus;
platforms = stdenv.lib.platforms.all;
longDescription = ''
Pinentry provides a console and a GTK+ GUI that allows users to
enter a passphrase when `gpg' or `gpg2' is run and needs it.

View file

@ -2363,8 +2363,8 @@ let
philter = callPackage ../tools/networking/philter { };
pinentry = callPackage ../tools/security/pinentry {
gtk2 = !stdenv.isDarwin;
qt4 = stdenv.isDarwin;
gtk2 = if stdenv.isDarwin then null else gtk2;
qt4 = if stdenv.isDarwin then qt4 else null;
};
pius = callPackage ../tools/security/pius { };

View file

@ -147,7 +147,6 @@ let
pciutils = linux;
pdf2xml = all;
php = linux;
pinentry = linux;
pltScheme = linux;
pmccabe = linux;
ppl = all;