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

55 lines
1.6 KiB
Nix
Raw Normal View History

2015-03-25 23:09:00 +00:00
{ fetchurl, stdenv, pkgconfig
2015-03-25 23:10:00 +00:00
, libcap ? null, ncurses ? null, gtk2 ? null, qt4 ? null
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:19:02 +00:00
hasX = gtk2 != null || qt4 != null;
2015-03-25 23:09:00 +00:00
in
with stdenv.lib;
stdenv.mkDerivation rec {
2015-06-18 12:11:55 +00:00
name = "pinentry-0.9.4";
src = fetchurl {
2012-11-05 21:31:30 +00:00
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
2015-06-18 12:11:55 +00:00
sha256 = "1q72ir9r9j70px61rdpd80an56k4ixmzy810nr14aildffxkb22b";
};
2015-03-25 23:10:00 +00:00
buildInputs = [ libcap gtk2 ncurses qt4 ];
2015-06-25 00:13:40 +00:00
prePatch = ''
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
'';
2015-06-08 14:25:58 +00:00
# configure cannot find moc on its own
preConfigure = stdenv.lib.optionalString (qt4 != null) ''
export QTDIR="${qt4}"
export MOC="${qt4}/bin/moc"
'';
2015-03-25 23:09:00 +00:00
configureFlags = [
(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-25 23:09:00 +00:00
];
nativeBuildInputs = [ pkgconfig ];
meta = {
2012-11-05 21:31:30 +00:00
homepage = "http://gnupg.org/aegypten2/";
description = "GnuPG's interface to passphrase input";
license = stdenv.lib.licenses.gpl2Plus;
2015-03-26 09:07:05 +00:00
platforms = stdenv.lib.platforms.all;
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.
'';
2015-06-08 14:25:58 +00:00
maintainers = [ stdenv.lib.maintainers.ttuegel ];
};
}