2017-07-24 11:38:07 +00:00
|
|
|
{ fetchurl, fetchpatch, stdenv, lib, pkgconfig
|
2017-12-16 02:20:06 +00:00
|
|
|
, libgpgerror, libassuan, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null, qt ? null
|
2015-03-25 23:09:00 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
2015-06-01 19:29:47 +00:00
|
|
|
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
|
|
|
|
mkEnable = mkFlag "enable" "disable";
|
|
|
|
mkWith = mkFlag "with" "without";
|
2015-03-25 23:09:00 +00:00
|
|
|
in
|
|
|
|
with stdenv.lib;
|
2008-12-08 21:22:20 +00:00
|
|
|
stdenv.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 19:42:10 +00:00
|
|
|
};
|
|
|
|
|
2017-12-16 02:20:06 +00:00
|
|
|
buildInputs = [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt ];
|
2011-06-07 21:50:12 +00:00
|
|
|
|
2015-06-25 00:13:40 +00:00
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
|
|
|
|
'';
|
|
|
|
|
2017-07-24 11:38:07 +00:00
|
|
|
patches = lib.optionals (gtk2 != null) [
|
|
|
|
(fetchpatch {
|
|
|
|
url = https://anonscm.debian.org/cgit/pkg-gnupg/pinentry.git/plain/debian/patches/0007-gtk2-When-X11-input-grabbing-fails-try-again-over-0..patch;
|
|
|
|
sha256 = "046jy7k0n7fj74s5w1h6sq1ljg8y77i0xwi301kv53bhsp0xsirx";
|
|
|
|
})];
|
|
|
|
|
2015-03-25 23:09:00 +00:00
|
|
|
configureFlags = [
|
2017-07-18 04:06:57 +00:00
|
|
|
(mkWith (libcap != null) "libcap")
|
|
|
|
(mkEnable (libsecret != null) "libsecret")
|
|
|
|
(mkEnable (ncurses != null) "pinentry-curses")
|
|
|
|
(mkEnable true "pinentry-tty")
|
|
|
|
(mkEnable (gtk2 != null) "pinentry-gtk2")
|
|
|
|
(mkEnable (gcr != null) "pinentry-gnome3")
|
2017-12-16 02:20:06 +00:00
|
|
|
(mkEnable (qt != null) "pinentry-qt")
|
2015-03-25 23:09:00 +00:00
|
|
|
];
|
2011-06-07 21:50:12 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2008-04-23 19:42:10 +00:00
|
|
|
|
2011-08-18 12:52:50 +00:00
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://gnupg.org/aegypten2/;
|
2008-12-08 21:22:20 +00:00
|
|
|
description = "GnuPG's interface to passphrase input";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2015-03-26 09:07:05 +00:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2008-12-08 21:22:20 +00:00
|
|
|
longDescription = ''
|
2015-06-08 14:25:58 +00: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 21:22:20 +00:00
|
|
|
'';
|
2015-06-08 14:25:58 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
2008-04-23 19:42:10 +00:00
|
|
|
};
|
|
|
|
}
|