Skip to content

Commit

Permalink
Merge branch 'pinentry-qt5'
Browse files Browse the repository at this point in the history
  • Loading branch information
ttuegel committed Dec 10, 2015
2 parents 8f5856c + ca0514d commit 114584a
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/tools/security/pinentry/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ let
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "pinentry-0.9.5";
name = "pinentry-0.9.6";

src = fetchurl {
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
sha256 = "1338hj1h3sh34897120y30x12b64wyj3xjzzk5asm2hdzhxgsmva";
sha256 = "0rhyw1vk28kgasjp22myf7m2q8kycw82d65pr9kgh93z17lj849a";
};

buildInputs = [ libgpgerror libassuan libcap gtk2 ncurses qt4 ];
Expand Down
47 changes: 47 additions & 0 deletions pkgs/tools/security/pinentry/qt5.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{ fetchurl, stdenv, pkgconfig
, libgpgerror, libassuan
, qtbase
, libcap ? null
}:

let
mkFlag = pfxTrue: pfxFalse: cond: name: "--${if cond then pfxTrue else pfxFalse}-${name}";
mkEnable = mkFlag "enable" "disable";
mkWith = mkFlag "with" "without";
in
with stdenv.lib;
stdenv.mkDerivation rec {
name = "pinentry-0.9.6";

src = fetchurl {
url = "mirror://gnupg/pinentry/${name}.tar.bz2";
sha256 = "0rhyw1vk28kgasjp22myf7m2q8kycw82d65pr9kgh93z17lj849a";
};

buildInputs = [ libgpgerror libassuan libcap qtbase ];

# configure cannot find moc on its own
preConfigure = ''
export QTDIR="${qtbase}"
export MOC="${qtbase}/bin/moc"
'';

configureFlags = [
(mkWith (libcap != null) "libcap")
(mkEnable true "pinentry-qt")
];

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 ];
};
}
12 changes: 12 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2711,6 +2711,18 @@ let
qt4 = null;
};

pinentry_ncurses = pinentry.override {
gtk2 = null;
};

pinentry_qt4 = pinentry_ncurses.override {
inherit qt4;
};

pinentry_qt5 = qt55Libs.callPackage ../tools/security/pinentry/qt5.nix {
libcap = if stdenv.isDarwin then null else libcap;
};

pius = callPackage ../tools/security/pius { };

pk2cmd = callPackage ../tools/misc/pk2cmd { };
Expand Down

0 comments on commit 114584a

Please sign in to comment.