nixpkgs/pkgs/tools/security/pinentry/default.nix

57 lines
1.9 KiB
Nix
Raw Normal View History

{ fetchurl, fetchpatch, stdenv, lib, pkgconfig
, libgpgerror, libassuan, libcap ? null, libsecret ? null, ncurses ? null, gtk2 ? null, gcr ? null, qt ? null
, enableEmacs ? false
2015-03-25 23:09:00 +00:00
}:
let
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
stdenv.mkDerivation rec {
2017-12-16 02:42:32 +00:00
name = "pinentry-1.1.0";
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";
};
2017-12-16 02:20:06 +00:00
buildInputs = [ libgpgerror libassuan libcap libsecret gtk2 gcr ncurses qt ];
2015-06-25 01:13:40 +01:00
prePatch = ''
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
'';
patches = lib.optionals (gtk2 != null) [
(fetchpatch {
url = https://sources.debian.org/data/main/p/pinentry/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
})
];
2015-03-25 23:09:00 +00:00
configureFlags = [
(mkWith (libcap != null) "libcap")
(mkEnable (libsecret != null) "libsecret")
(mkEnable (ncurses != null) "pinentry-curses")
(mkEnable true "pinentry-tty")
(mkEnable enableEmacs "pinentry-emacs")
(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
];
nativeBuildInputs = [ pkgconfig ];
2017-12-16 02:52:37 +00:00
meta = with stdenv.lib; {
homepage = http://gnupg.org/aegypten2/;
2017-12-16 02:52:37 +00:00
description = "GnuPGs interface to passphrase input";
license = licenses.gpl2Plus;
platforms = platforms.all;
longDescription = ''
2015-06-08 15:25:58 +01: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.
'';
2017-12-16 02:52:37 +00:00
maintainers = [ maintainers.ttuegel ];
};
}