2017-07-24 12:38:07 +01:00
|
|
|
|
{ fetchurl, fetchpatch, stdenv, lib, pkgconfig
|
2019-07-24 17:26:16 +01:00
|
|
|
|
, libgpgerror, libassuan
|
|
|
|
|
, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null
|
|
|
|
|
, qt4 ? null, qt5 ? null
|
2018-02-14 19:33:09 +00:00
|
|
|
|
, enableEmacs ? false
|
2015-03-25 23:09:00 +00:00
|
|
|
|
}:
|
|
|
|
|
|
2019-07-24 17:26:16 +01:00
|
|
|
|
assert qt5 != null -> qt4 == null;
|
|
|
|
|
assert qt4 != null -> qt5 == null;
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
mkDerivation =
|
|
|
|
|
if qt5 != null
|
|
|
|
|
then qt5.mkDerivation
|
|
|
|
|
else stdenv.mkDerivation;
|
|
|
|
|
in
|
|
|
|
|
|
|
|
|
|
mkDerivation rec {
|
2017-12-16 02:42:32 +00:00
|
|
|
|
name = "pinentry-1.1.0";
|
2008-12-08 21:22:20 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
2012-11-05 21:31:30 +00:00
|
|
|
|
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
|
2017-12-16 02:42:32 +00:00
|
|
|
|
sha256 = "0w35ypl960pczg5kp6km3dyr000m1hf0vpwwlh72jjkjza36c1v8";
|
2008-04-23 20:42:10 +01:00
|
|
|
|
};
|
|
|
|
|
|
2019-04-06 14:55:09 +01:00
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2019-07-24 17:26:16 +01:00
|
|
|
|
buildInputs =
|
|
|
|
|
[ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt4 ]
|
|
|
|
|
++ stdenv.lib.optional (qt5 != null) qt5.qtbase;
|
2011-06-07 22:50:12 +01:00
|
|
|
|
|
2015-06-25 01:13:40 +01:00
|
|
|
|
prePatch = ''
|
|
|
|
|
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
|
|
|
|
|
'';
|
|
|
|
|
|
2017-07-24 12:38:07 +01:00
|
|
|
|
patches = lib.optionals (gtk2 != null) [
|
|
|
|
|
(fetchpatch {
|
2019-05-03 23:20:54 +01:00
|
|
|
|
url = "https://salsa.debian.org/debian/pinentry/raw/debian/1.1.0-1/debian/patches/"
|
|
|
|
|
+ "0007-gtk2-When-X11-input-grabbing-fails-try-again-over-0..patch";
|
2018-02-25 20:21:40 +00:00
|
|
|
|
sha256 = "15r1axby3fdlzz9wg5zx7miv7gqx2jy4immaw4xmmw5skiifnhfd";
|
2017-12-16 02:52:37 +00:00
|
|
|
|
})
|
|
|
|
|
];
|
2017-07-24 12:38:07 +01:00
|
|
|
|
|
2015-03-25 23:09:00 +00:00
|
|
|
|
configureFlags = [
|
2019-02-26 17:04:50 +00:00
|
|
|
|
(stdenv.lib.withFeature (libcap != null) "libcap")
|
|
|
|
|
(stdenv.lib.enableFeature (libsecret != null) "libsecret")
|
|
|
|
|
(stdenv.lib.enableFeature (ncurses != null) "pinentry-curses")
|
|
|
|
|
(stdenv.lib.enableFeature true "pinentry-tty")
|
|
|
|
|
(stdenv.lib.enableFeature enableEmacs "pinentry-emacs")
|
|
|
|
|
(stdenv.lib.enableFeature (gtk2 != null) "pinentry-gtk2")
|
|
|
|
|
(stdenv.lib.enableFeature (gcr != null) "pinentry-gnome3")
|
2019-07-24 17:26:16 +01:00
|
|
|
|
(stdenv.lib.enableFeature (qt4 != null || qt5 != null) "pinentry-qt")
|
2011-06-07 22:50:12 +01:00
|
|
|
|
|
2019-04-06 14:55:09 +01:00
|
|
|
|
"--with-libassuan-prefix=${libassuan.dev}"
|
|
|
|
|
"--with-libgpg-error-prefix=${libgpgerror.dev}"
|
|
|
|
|
];
|
2008-04-23 20:42:10 +01:00
|
|
|
|
|
2017-12-16 02:52:37 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
|
homepage = http://gnupg.org/aegypten2/;
|
2017-12-16 02:52:37 +00:00
|
|
|
|
description = "GnuPG’s interface to passphrase input";
|
|
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
|
platforms = platforms.all;
|
2008-12-08 21:22:20 +00:00
|
|
|
|
longDescription = ''
|
2019-09-03 23:49:40 +01:00
|
|
|
|
Pinentry provides a console and (optional) GTK and Qt GUIs allowing users
|
2015-06-08 15:25:58 +01:00
|
|
|
|
to enter a passphrase when `gpg' or `gpg2' is run and needs it.
|
2008-12-08 21:22:20 +00:00
|
|
|
|
'';
|
2017-12-16 02:52:37 +00:00
|
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2008-04-23 20:42:10 +01:00
|
|
|
|
};
|
|
|
|
|
}
|