55 lines
1.6 KiB
Nix
55 lines
1.6 KiB
Nix
{ fetchurl, stdenv, pkgconfig
|
|
, libgpgerror, libassuan, libcap ? null, ncurses ? null, gtk2 ? 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 = gtk2 != null || qt4 != null;
|
|
in
|
|
with stdenv.lib;
|
|
stdenv.mkDerivation rec {
|
|
name = "pinentry-0.9.7";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
|
|
sha256 = "1cp7wjqr6nx31mdclr61s2h84ijqjl0ph99kgj4vyawpjj1j1633";
|
|
};
|
|
|
|
buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ];
|
|
|
|
prePatch = ''
|
|
substituteInPlace pinentry/pinentry-curses.c --replace ncursesw ncurses
|
|
'';
|
|
|
|
# configure cannot find moc on its own
|
|
preConfigure = stdenv.lib.optionalString (qt4 != null) ''
|
|
export QTDIR="${qt4}"
|
|
export MOC="${qt4}/bin/moc"
|
|
'';
|
|
|
|
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")
|
|
];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
meta = {
|
|
homepage = "http://gnupg.org/aegypten2/";
|
|
description = "GnuPG's interface to passphrase input";
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
|
platforms = stdenv.lib.platforms.all;
|
|
longDescription = ''
|
|
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.
|
|
'';
|
|
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
|
};
|
|
}
|