gnupg: Add gnupg 2.1 as default

Additionally, move all gnupg expressions into the gnupg folder.
This commit is contained in:
William A. Kennington III
2014-11-06 11:44:12 -08:00
parent 3d049938c8
commit 850da1803f
5 changed files with 41 additions and 3 deletions
+21
View File
@@ -0,0 +1,21 @@
{ stdenv, fetchurl, readline, bzip2 }:
stdenv.mkDerivation rec {
name = "gnupg-1.4.18";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
sha256 = "1233bppjvdpbbl425ii6l7xvgy0879ghhnmwrph5b6c4g3dgvddp";
};
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
};
}