2015-03-26 00:09:00 +01:00
|
|
|
{ fetchurl, stdenv, pkgconfig
|
2015-08-13 02:13:27 +02:00
|
|
|
, libgpgerror, libassuan, libcap ? null, ncurses ? null, gtk2 ? null, qt4 ? null
|
2015-03-26 00:09:00 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2015-06-01 21:29:47 +02:00
|
|
|
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
|
|
|
|
mkEnable = mkFlag "enable" "disable";
|
|
|
|
mkWith = mkFlag "with" "without";
|
2015-03-26 00:19:02 +01:00
|
|
|
hasX = gtk2 != null || qt4 != null;
|
2015-03-26 00:09:00 +01:00
|
|
|
in
|
|
|
|
with stdenv.lib;
|
2008-12-08 22:22:20 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2016-02-21 04:01:42 +01:00
|
|
|
name = "pinentry-0.9.7";
|
2008-12-08 22:22:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-11-05 22:31:30 +01:00
|
|
|
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
|
2016-02-21 04:01:42 +01:00
|
|
|
sha256 = "1cp7wjqr6nx31mdclr61s2h84ijqjl0ph99kgj4vyawpjj1j1633";
|
2008-04-23 21:42:10 +02:00
|
|
|
};
|
|
|
|
|
2015-08-13 02:13:27 +02:00
|
|
|
buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ];
|
2011-06-07 23:50:12 +02:00
|
|
|
|
2015-06-25 02:13:40 +02:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
|
|
|
|
'';
|
|
|
|
|
2015-06-08 16:25:58 +02:00
|
|
|
# configure cannot find moc on its own
|
|
|
|
preConfigure = stdenv.lib.optionalString (qt4 != null) ''
|
|
|
|
export QTDIR="${qt4}"
|
|
|
|
export MOC="${qt4}/bin/moc"
|
|
|
|
'';
|
|
|
|
|
2015-03-26 00:09:00 +01:00
|
|
|
configureFlags = [
|
2015-06-01 21:29:47 +02:00
|
|
|
(mkWith (libcap != null) "libcap")
|
|
|
|
(mkWith (hasX) "x")
|
|
|
|
(mkEnable (ncurses != null) "pinentry-curses")
|
|
|
|
(mkEnable true "pinentry-tty")
|
|
|
|
(mkEnable (gtk2 != null) "pinentry-gtk2")
|
|
|
|
(mkEnable (qt4 != null) "pinentry-qt4")
|
2015-03-26 00:09:00 +01:00
|
|
|
];
|
2011-06-07 23:50:12 +02:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2008-04-23 21:42:10 +02:00
|
|
|
|
2011-08-18 14:52:50 +02:00
|
|
|
meta = {
|
2012-11-05 22:31:30 +01:00
|
|
|
homepage = "http://gnupg.org/aegypten2/";
|
2008-12-08 22:22:20 +01:00
|
|
|
description = "GnuPG's interface to passphrase input";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2015-03-26 10:07:05 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-12-08 22:22:20 +01:00
|
|
|
longDescription = ''
|
2015-06-08 16:25:58 +02:00
|
|
|
Pinentry provides a console and (optional) GTK+ and Qt GUIs allowing users
|
|
|
|
to enter a passphrase when `gpg' or `gpg2' is run and needs it.
|
2008-12-08 22:22:20 +01:00
|
|
|
'';
|
2015-06-08 16:25:58 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
2008-04-23 21:42:10 +02:00
|
|
|
};
|
|
|
|
}
|