3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/gnupg1/default.nix

22 lines
530 B
Nix
Raw Normal View History

{ stdenv, fetchurl, readline, bzip2 }:
stdenv.mkDerivation rec {
2013-12-19 16:20:46 +00:00
name = "gnupg-1.4.16";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
2013-12-19 16:20:46 +00:00
sha256 = "0bsa1yqa3ybhvmc4ys73amdpcmckrlq1fsxjl2980cxada778fvv";
};
buildInputs = [ readline bzip2 ];
doCheck = true;
meta = {
description = "free implementation of the OpenPGP standard for encrypting and signing data";
homepage = http://www.gnupg.org/;
license = "GPLv3+";
platforms = stdenv.lib.platforms.gnu; # arbitrary choice
};
}