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

43 lines
1.2 KiB
Nix
Raw Normal View History

2015-03-25 23:09:00 +00:00
{ fetchurl, stdenv, pkgconfig
, libcap ? null, ncurses ? null, gtk ? null, qt4 ? null
}:
let
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
mkEnable = mkFlag "enable" "disable";
mkWith = mkFlag "with" "without";
hasX = gtk != null || qt4 != null;
in
with stdenv.lib;
stdenv.mkDerivation rec {
2014-12-16 23:30:16 +00:00
name = "pinentry-0.9.0";
src = fetchurl {
2012-11-05 21:31:30 +00:00
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
2014-12-16 23:30:16 +00:00
sha256 = "1awhajq21hcjgqfxg9czaxg555gij4bba6axrwg8w6lfmc3ml14h";
};
2015-03-25 23:09:00 +00:00
buildInputs = [ libcap gtk ncurses qt4 ];
2015-03-25 23:09:00 +00:00
configureFlags = [
(mkWith (libcap != null) "libcap")
(mkEnable (ncurses != null) "pinentry-curses")
(mkEnable true "pinentry-tty")
(mkEnable (gtk != null) "pinentry-gtk2")
(mkEnable (qt4 != null) "pinentry-qt4")
];
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;
longDescription = ''
Pinentry provides a console and a GTK+ GUI that allows users to
enter a passphrase when `gpg' or `gpg2' is run and needs it.
'';
};
}