pinentry: fix build /cc wkennington
This commit is contained in:
parent
61e573fcb6
commit
8feda47bee
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
(mkWith (libcap != null) "libcap")
|
(mkWith (libcap != null) "libcap")
|
||||||
|
(mkWith (hasX) "x")
|
||||||
(mkEnable (ncurses != null) "pinentry-curses")
|
(mkEnable (ncurses != null) "pinentry-curses")
|
||||||
(mkEnable true "pinentry-tty")
|
(mkEnable true "pinentry-tty")
|
||||||
(mkEnable (gtk2 != null) "pinentry-gtk2")
|
(mkEnable (gtk2 != null) "pinentry-gtk2")
|
||||||
@ -33,7 +34,7 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "http://gnupg.org/aegypten2/";
|
homepage = "http://gnupg.org/aegypten2/";
|
||||||
description = "GnuPG's interface to passphrase input";
|
description = "GnuPG's interface to passphrase input";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = stdenv.lib.licenses.gpl2Plus;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Pinentry provides a console and a GTK+ GUI that allows users to
|
Pinentry provides a console and a GTK+ GUI that allows users to
|
||||||
enter a passphrase when `gpg' or `gpg2' is run and needs it.
|
enter a passphrase when `gpg' or `gpg2' is run and needs it.
|
||||||
|
@ -2363,8 +2363,8 @@ let
|
|||||||
philter = callPackage ../tools/networking/philter { };
|
philter = callPackage ../tools/networking/philter { };
|
||||||
|
|
||||||
pinentry = callPackage ../tools/security/pinentry {
|
pinentry = callPackage ../tools/security/pinentry {
|
||||||
gtk2 = !stdenv.isDarwin;
|
gtk2 = if stdenv.isDarwin then null else gtk2;
|
||||||
qt4 = stdenv.isDarwin;
|
qt4 = if stdenv.isDarwin then qt4 else null;
|
||||||
};
|
};
|
||||||
|
|
||||||
pius = callPackage ../tools/security/pius { };
|
pius = callPackage ../tools/security/pius { };
|
||||||
|
@ -147,7 +147,6 @@ let
|
|||||||
pciutils = linux;
|
pciutils = linux;
|
||||||
pdf2xml = all;
|
pdf2xml = all;
|
||||||
php = linux;
|
php = linux;
|
||||||
pinentry = linux;
|
|
||||||
pltScheme = linux;
|
pltScheme = linux;
|
||||||
pmccabe = linux;
|
pmccabe = linux;
|
||||||
ppl = all;
|
ppl = all;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user