summary refs log tree commit diff
path: root/pkgs/tools/security/pinentry
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2012-11-05 22:31:30 +0100
committerPeter Simons <simons@cryp.to>2012-11-05 22:31:30 +0100
commit11094a79607d37c08378f3b441b276a2ba93bf95 (patch)
tree15e4c9915447818262ffb25f57fc8b968701c726 /pkgs/tools/security/pinentry
parent31ca4356fbe6640710426ab1cf542026743371f4 (diff)
downloadnixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar.gz
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar.bz2
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar.lz
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar.xz
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.tar.zst
nixlib-11094a79607d37c08378f3b441b276a2ba93bf95.zip
pinentry: update to version 0.8.2
Diffstat (limited to 'pkgs/tools/security/pinentry')
-rw-r--r--pkgs/tools/security/pinentry/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/tools/security/pinentry/default.nix b/pkgs/tools/security/pinentry/default.nix
index 524a582fcb02..ba4ce8a3e220 100644
--- a/pkgs/tools/security/pinentry/default.nix
+++ b/pkgs/tools/security/pinentry/default.nix
@@ -6,11 +6,11 @@
 assert useGtk || useNcurses || useQt4;
 
 stdenv.mkDerivation rec {
-  name = "pinentry-0.8.0";
+  name = "pinentry-0.8.2";
 
   src = fetchurl {
-    url = "mirror://gnupg/pinentry/${name}.tar.gz";
-    sha256 = "06phs3gbs6gf0z9g28z3jgsw312dhhpdgzrx4hhps53xrbwpyv22";
+    url = "mirror://gnupg/pinentry/${name}.tar.bz2";
+    sha256 = "1c9r99ck8072y7nkirddg3p372xadl95y65hyc1m6wn5mavbg12h";
   };
 
   buildInputs = let opt = stdenv.lib.optional; in []
@@ -27,14 +27,13 @@ stdenv.mkDerivation rec {
   buildNativeInputs = [ pkgconfig ];
 
   meta = {
+    homepage = "http://gnupg.org/aegypten2/";
     description = "GnuPG's interface to passphrase input";
+    license = "GPLv2+";
 
     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.
     '';
-
-    homepage = http://gnupg.org/aegypten2/;
-    license = "GPLv2+";
   };
 }