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

44 lines
1.3 KiB
Nix
Raw Normal View History

2015-03-26 00:09:00 +01:00
{ fetchurl, stdenv, pkgconfig
2015-03-26 00:10:00 +01:00
, libcap ? null, ncurses ? null, gtk2 ? null, qt4 ? null
2015-03-26 00:09:00 +01:00
}:
let
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
mkEnable = mkFlag "enable" "disable";
mkWith = mkFlag "with" "without";
2015-03-26 00:19:02 +01:00
hasX = gtk2 != null || qt4 != null;
2015-03-26 00:09:00 +01:00
in
with stdenv.lib;
stdenv.mkDerivation rec {
2014-12-17 00:30:16 +01:00
name = "pinentry-0.9.0";
src = fetchurl {
2012-11-05 22:31:30 +01:00
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
2014-12-17 00:30:16 +01:00
sha256 = "1awhajq21hcjgqfxg9czaxg555gij4bba6axrwg8w6lfmc3ml14h";
};
2015-03-26 00:10:00 +01:00
buildInputs = [ libcap gtk2 ncurses qt4 ];
2015-03-26 00:09:00 +01:00
configureFlags = [
(mkWith (libcap != null) "libcap")
2015-03-26 10:07:05 +01:00
(mkWith (hasX) "x")
2015-03-26 00:09:00 +01:00
(mkEnable (ncurses != null) "pinentry-curses")
(mkEnable true "pinentry-tty")
2015-03-26 00:10:00 +01:00
(mkEnable (gtk2 != null) "pinentry-gtk2")
2015-03-26 00:09:00 +01:00
(mkEnable (qt4 != null) "pinentry-qt4")
];
nativeBuildInputs = [ pkgconfig ];
meta = {
2012-11-05 22:31:30 +01:00
homepage = "http://gnupg.org/aegypten2/";
description = "GnuPG's interface to passphrase input";
license = stdenv.lib.licenses.gpl2Plus;
2015-03-26 10:07:05 +01:00
platforms = stdenv.lib.platforms.all;
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.
'';
};
}