pinentry: clean up
This commit is contained in:
parent
7ea74f4b7b
commit
49993bec81
|
@ -7,7 +7,6 @@ let
|
||||||
mkEnable = mkFlag "enable" "disable";
|
mkEnable = mkFlag "enable" "disable";
|
||||||
mkWith = mkFlag "with" "without";
|
mkWith = mkFlag "with" "without";
|
||||||
in
|
in
|
||||||
with stdenv.lib;
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "pinentry-1.1.0";
|
name = "pinentry-1.1.0";
|
||||||
|
|
||||||
|
@ -26,7 +25,8 @@ stdenv.mkDerivation rec {
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
url = https://anonscm.debian.org/cgit/pkg-gnupg/pinentry.git/plain/debian/patches/0007-gtk2-When-X11-input-grabbing-fails-try-again-over-0..patch;
|
url = https://anonscm.debian.org/cgit/pkg-gnupg/pinentry.git/plain/debian/patches/0007-gtk2-When-X11-input-grabbing-fails-try-again-over-0..patch;
|
||||||
sha256 = "046jy7k0n7fj74s5w1h6sq1ljg8y77i0xwi301kv53bhsp0xsirx";
|
sha256 = "046jy7k0n7fj74s5w1h6sq1ljg8y77i0xwi301kv53bhsp0xsirx";
|
||||||
})];
|
})
|
||||||
|
];
|
||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
(mkWith (libcap != null) "libcap")
|
(mkWith (libcap != null) "libcap")
|
||||||
|
@ -40,15 +40,15 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
homepage = http://gnupg.org/aegypten2/;
|
homepage = http://gnupg.org/aegypten2/;
|
||||||
description = "GnuPG's interface to passphrase input";
|
description = "GnuPG’s interface to passphrase input";
|
||||||
license = stdenv.lib.licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
platforms = stdenv.lib.platforms.all;
|
platforms = platforms.all;
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Pinentry provides a console and (optional) GTK+ and Qt GUIs allowing users
|
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.
|
to enter a passphrase when `gpg' or `gpg2' is run and needs it.
|
||||||
'';
|
'';
|
||||||
maintainers = [ stdenv.lib.maintainers.ttuegel ];
|
maintainers = [ maintainers.ttuegel ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue