1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/security/gnupg/1.nix
Petar Bogdanovic 31955c869f Update gnupg1orig package to gpg-1.4.19
A test build pulled too many packages (including perl) for my VM so
while it's a simple bump, it's also untested.
2015-03-05 16:04:29 +01:00

22 lines
562 B
Nix

{ stdenv, fetchurl, readline, bzip2 }:
stdenv.mkDerivation rec {
name = "gnupg-1.4.19";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86";
};
buildInputs = [ readline bzip2 ];
doCheck = true;
meta = {
description = "free implementation of the OpenPGP standard for encrypting and signing data";
homepage = http://www.gnupg.org/;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}