2013-10-10 10:38:23 +01:00
|
|
|
{ stdenv, fetchurl, readline, bzip2 }:
|
2010-05-19 21:58:47 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-06-14 15:35:51 +01:00
|
|
|
name = "gnupg-1.4.23";
|
2010-05-19 21:58:47 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2018-06-14 15:35:51 +01:00
|
|
|
sha256 = "1fkq4sqldvf6a25mm2qz95swv1qjg464736091w51djiwqbjyin9";
|
2010-05-19 21:58:47 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ readline bzip2 ];
|
|
|
|
|
2010-10-19 09:09:28 +01:00
|
|
|
doCheck = true;
|
|
|
|
|
2017-03-27 20:47:38 +01:00
|
|
|
meta = with stdenv.lib; {
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = https://gnupg.org;
|
2017-03-27 20:47:38 +01:00
|
|
|
description = "Classic (1.4) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
longDescription = ''
|
|
|
|
The GNU Privacy Guard is the GNU project's complete and free
|
|
|
|
implementation of the OpenPGP standard as defined by RFC4880. GnuPG
|
|
|
|
"classic" (1.4) is the old standalone version which is most suitable for
|
|
|
|
older or embedded platforms. GnuPG allows to encrypt and sign your data
|
|
|
|
and communication, features a versatile key management 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.
|
|
|
|
'';
|
2018-04-30 23:43:54 +01:00
|
|
|
platforms = platforms.gnu ++ platforms.linux; # arbitrary choice
|
2010-05-19 21:58:47 +01:00
|
|
|
};
|
|
|
|
}
|