f217f0b2ba
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/gnupg/versions. These checks were done: - built on NixOS - /nix/store/bxq2w522d82qykwqi8wscm4v105zs2bq-gnupg-1.4.23/bin/gpgsplit passed the binary check. - /nix/store/bxq2w522d82qykwqi8wscm4v105zs2bq-gnupg-1.4.23/bin/gpg passed the binary check. - /nix/store/bxq2w522d82qykwqi8wscm4v105zs2bq-gnupg-1.4.23/bin/gpgv passed the binary check. - /nix/store/bxq2w522d82qykwqi8wscm4v105zs2bq-gnupg-1.4.23/bin/gpg-zip passed the binary check. - 4 of 4 passed binary check by having a zero exit code. - 1 of 4 passed binary check by having the new version present in output. - found 1.4.23 with grep in /nix/store/bxq2w522d82qykwqi8wscm4v105zs2bq-gnupg-1.4.23 - directory tree listing: https://gist.github.com/37dc2e87340f0983866c3c125172de27 - du listing: https://gist.github.com/4a84db46e37bd6d372fe020cc7826838
32 lines
1.2 KiB
Nix
32 lines
1.2 KiB
Nix
{ stdenv, fetchurl, readline, bzip2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gnupg-1.4.23";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
|
sha256 = "1fkq4sqldvf6a25mm2qz95swv1qjg464736091w51djiwqbjyin9";
|
|
};
|
|
|
|
buildInputs = [ readline bzip2 ];
|
|
|
|
doCheck = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://gnupg.org;
|
|
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.
|
|
'';
|
|
platforms = platforms.gnu ++ platforms.linux; # arbitrary choice
|
|
};
|
|
}
|