summary refs log tree commit diff
path: root/pkgs/tools/misc/pinentry/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/misc/pinentry/default.nix')
-rw-r--r--pkgs/tools/misc/pinentry/default.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/tools/misc/pinentry/default.nix b/pkgs/tools/misc/pinentry/default.nix
deleted file mode 100644
index 004f3afa9b77..000000000000
--- a/pkgs/tools/misc/pinentry/default.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{ fetchurl, stdenv, pkgconfig, glib
-, useGtk ? true, gtk ? null
-, useNcurses ? true, ncurses ? null
-, useQt4 ? false, qt4 ? null }:
-
-assert useGtk -> (gtk != null);
-assert useNcurses -> (ncurses != null);
-assert useQt4 -> (qt4 != null);
-
-stdenv.mkDerivation rec {
-  name = "pinentry-0.8.0";
-
-  src = fetchurl {
-    url = "mirror://gnupg/pinentry/${name}.tar.gz";
-    sha256 = "06phs3gbs6gf0z9g28z3jgsw312dhhpdgzrx4hhps53xrbwpyv22";
-  };
-
-  buildInputs = [ glib pkgconfig gtk ncurses ] ++ stdenv.lib.optional useQt4 qt4;
-
-  meta = { 
-    description = "GnuPG's interface to passphrase input";
-
-    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+";
-  };
-}