1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

pinentry: Update build

This commit is contained in:
William A. Kennington III 2015-03-25 16:09:00 -07:00
parent 151c42aa98
commit 4fc94e6222

View file

@ -1,10 +1,14 @@
{ fetchurl, stdenv, pkgconfig, glib
, useGtk ? !stdenv.isDarwin, gtk
, useNcurses ? true, ncurses
, useQt4 ? false, qt4 }:
assert useGtk || useNcurses || useQt4;
{ fetchurl, stdenv, pkgconfig
, libcap ? null, ncurses ? null, gtk ? null, qt4 ? null
}:
let
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
mkEnable = mkFlag "enable" "disable";
mkWith = mkFlag "with" "without";
hasX = gtk != null || qt4 != null;
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "pinentry-0.9.0";
@ -13,16 +17,15 @@ stdenv.mkDerivation rec {
sha256 = "1awhajq21hcjgqfxg9czaxg555gij4bba6axrwg8w6lfmc3ml14h";
};
buildInputs = let opt = stdenv.lib.optional; in []
++ opt useGtk glib
++ opt useGtk gtk
++ opt useNcurses ncurses
++ opt useQt4 qt4;
buildInputs = [ libcap gtk ncurses qt4 ];
configureFlags = [ "--disable-pinentry-gtk" "--disable-pinentry-qt" ]
++ (if useGtk || useQt4 then ["--with-x"] else ["--without-x"])
++ (if useGtk then ["--enable-pinentry-gtk2"] else ["--disable-pinentry-gtk"])
++ (if useQt4 then ["--enable-pinentry-qt4"] else ["--disable-pinentry-qt4"]);
configureFlags = [
(mkWith (libcap != null) "libcap")
(mkEnable (ncurses != null) "pinentry-curses")
(mkEnable true "pinentry-tty")
(mkEnable (gtk != null) "pinentry-gtk2")
(mkEnable (qt4 != null) "pinentry-qt4")
];
nativeBuildInputs = [ pkgconfig ];