gnupg: 2.1.23 -> 2.2.0

See http://lists.gnu.org/archive/html/info-gnu/2017-08/msg00012.html
for release information
This commit is contained in:
Lancelot SIX 2017-08-29 09:03:37 +02:00
parent 16bab456b4
commit 1e5b5bd719
No known key found for this signature in database
GPG Key ID: 02E1542BA66FB047
2 changed files with 4 additions and 4 deletions

View File

@ -15,11 +15,11 @@ assert guiSupport -> pinentry != null;
stdenv.mkDerivation rec {
name = "gnupg-${version}";
version = "2.1.23";
version = "2.2.0";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
sha256 = "0xqd5nm4j3w9lwk35vg57gl2i8bfkmx7d24i44gkbscm2lwpci59";
sha256 = "1rj538kp3wsdq7rhl8sy1wpwhlsbxcch0cwk64kgz8gpw05lllfl";
};
buildInputs = [

View File

@ -2215,10 +2215,10 @@ with pkgs;
gnupg20 = callPackage ../tools/security/gnupg/20.nix {
pinentry = if stdenv.isDarwin then pinentry_mac else pinentry;
};
gnupg21 = callPackage ../tools/security/gnupg/21.nix {
gnupg22 = callPackage ../tools/security/gnupg/22.nix {
pinentry = if stdenv.isDarwin then pinentry_mac else pinentry;
};
gnupg = gnupg21;
gnupg = gnupg22;
gnuplot = callPackage ../tools/graphics/gnuplot { qt = qt4; };