lol
1{ stdenv, fetchurl, readline, bzip2 }:
2
3stdenv.mkDerivation rec {
4 name = "gnupg-1.4.19";
5
6 src = fetchurl {
7 url = "mirror://gnupg/gnupg/${name}.tar.bz2";
8 sha256 = "7f09319d044b0f6ee71fe3587bb873be701723ac0952cff5069046a78de8fd86";
9 };
10
11 patches = [ ./remove-debug-message.patch ];
12
13 buildInputs = [ readline bzip2 ];
14
15 doCheck = true;
16
17 meta = {
18 description = "free implementation of the OpenPGP standard for encrypting and signing data";
19 homepage = http://www.gnupg.org/;
20 license = stdenv.lib.licenses.gpl3Plus;
21 platforms = stdenv.lib.platforms.gnu; # arbitrary choice
22 };
23}