summary refs log tree commit diff
path: root/pkgs/tools/security
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2017-12-16 03:52:37 +0100
committerJan Tojnar <jtojnar@gmail.com>2017-12-16 03:52:37 +0100
commit49993bec81a143032cae93a72e54e210ff8de423 (patch)
tree358a5b7b4584d6a693abdf1076417faca87a66e7 /pkgs/tools/security
parent7ea74f4b7b787b1ca503a394b7d49e0cd5108968 (diff)
downloadnixlib-49993bec81a143032cae93a72e54e210ff8de423.tar
nixlib-49993bec81a143032cae93a72e54e210ff8de423.tar.gz
nixlib-49993bec81a143032cae93a72e54e210ff8de423.tar.bz2
nixlib-49993bec81a143032cae93a72e54e210ff8de423.tar.lz
nixlib-49993bec81a143032cae93a72e54e210ff8de423.tar.xz
nixlib-49993bec81a143032cae93a72e54e210ff8de423.tar.zst
nixlib-49993bec81a143032cae93a72e54e210ff8de423.zip
pinentry: clean up
Diffstat (limited to 'pkgs/tools/security')
-rw-r--r--pkgs/tools/security/pinentry/default.nix18
1 files changed, 9 insertions, 9 deletions
diff --git a/pkgs/tools/security/pinentry/default.nix b/pkgs/tools/security/pinentry/default.nix
index ac35f2af6626..c551a8161aa2 100644
--- a/pkgs/tools/security/pinentry/default.nix
+++ b/pkgs/tools/security/pinentry/default.nix
@@ -7,7 +7,6 @@ let
   mkEnable = mkFlag "enable" "disable";
   mkWith = mkFlag "with" "without";
 in
-with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "pinentry-1.1.0";
 
@@ -24,9 +23,10 @@ stdenv.mkDerivation rec {
 
   patches = lib.optionals (gtk2 != null) [
     (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;
-       sha256 = "046jy7k0n7fj74s5w1h6sq1ljg8y77i0xwi301kv53bhsp0xsirx";
-  })];
+      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";
+    })
+  ];
 
   configureFlags = [
     (mkWith   (libcap != null)    "libcap")
@@ -40,15 +40,15 @@ stdenv.mkDerivation rec {
 
   nativeBuildInputs = [ pkgconfig ];
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = http://gnupg.org/aegypten2/;
-    description = "GnuPG's interface to passphrase input";
-    license = stdenv.lib.licenses.gpl2Plus;
-    platforms = stdenv.lib.platforms.all;
+    description = "GnuPG’s interface to passphrase input";
+    license = licenses.gpl2Plus;
+    platforms = 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 ];
+    maintainers = [ maintainers.ttuegel ];
   };
 }