summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorRussell O'Connor <roconnor@theorem.ca>2014-09-18 14:46:54 -0400
committerRussell O'Connor <roconnor@theorem.ca>2014-09-18 14:46:54 -0400
commit2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6 (patch)
tree31ac2e8d8afb8518f0f53eb3338b88b6b4ae428c /pkgs/tools
parent86204e322f2fd8ad663906811c38b5eb2b361652 (diff)
downloadnixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar.gz
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar.bz2
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar.lz
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar.xz
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.tar.zst
nixlib-2b4e35bfd3b4d4dd08e06f6eeece9c88b456eeb6.zip
Remove unmaintained gnupg2_1.
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/gnupg/git.nix47
1 files changed, 0 insertions, 47 deletions
diff --git a/pkgs/tools/security/gnupg/git.nix b/pkgs/tools/security/gnupg/git.nix
deleted file mode 100644
index f8b5d8cc1507..000000000000
--- a/pkgs/tools/security/gnupg/git.nix
+++ /dev/null
@@ -1,47 +0,0 @@
-{ fetchgit, stdenv, readline, zlib, libgpgerror, npth, libgcrypt, libassuan
-, libksba, coreutils, autoconf, automake, transfig, ghostscript, texinfo
-, pinentry ? null, openldap ? null, bzip2 ? null, libusb ? null, curl ? null
-}:
-
-stdenv.mkDerivation rec {
-  name = "gnupg-2.1pre-git20120407";
-
-  src = fetchgit {
-    url = "git://git.gnupg.org/gnupg.git";
-    rev = "f1e1387bee286c7434f0462185048872bcdb4484";
-    sha256 = "8f5a14587beccdd3752f9e430e56c6ea2d393dddb7843bfc17029e1a309045bb";
-  };
-
-  buildInputs = [ readline zlib libgpgerror npth libgcrypt libassuan libksba 
-                  openldap bzip2 libusb curl
-                  autoconf automake transfig ghostscript texinfo ];
-
-  patchPhase = ''
-    find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
-  '';
-
-  preConfigure = "autoreconf -v";
-  configureFlags = "--enable-maintainer-mode" +
-   (if pinentry != null then " --with-pinentry-pgm=${pinentry}/bin/pinentry"
-                        else "");
-
-  meta = {
-    description = "GNU Privacy Guard (GnuPG), GNU Project's implementation of the OpenPGP standard";
-
-    longDescription = ''
-      GnuPG is the GNU project's complete and free implementation of
-      the OpenPGP standard as defined by RFC4880.  GnuPG allows to
-      encrypt and sign your data and communication, features a
-      versatile key managment system as well as access modules for all
-      kind of public key directories.  GnuPG, also known as GPG, is a
-      command line tool with features for easy integration with other
-      applications.  A wealth of frontend applications and libraries
-      are available.  Version 2 of GnuPG also provides support for
-      S/MIME.
-    '';
-
-    homepage = http://gnupg.org/;
-
-    license = stdenv.lib.licenses.gpl3Plus;
-  };
-}