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

69 lines
2.2 KiB
Nix
Raw Normal View History

{ 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
, 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";
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";
};
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;
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://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
})
];
2015-03-25 23:09:00 +00:00
configureFlags = [
(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")
"--with-libassuan-prefix=${libassuan.dev}"
"--with-libgpg-error-prefix=${libgpgerror.dev}"
];
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 = ''
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.
'';
2017-12-16 02:52:37 +00:00
maintainers = [ maintainers.ttuegel ];
};
}