nixpkgs/pkgs/tools/security/gnupg/20.nix

64 lines
2.3 KiB
Nix
Raw Normal View History

{ fetchurl, stdenv, readline, zlib, libgpgerror, pth, libgcrypt, libassuan
2015-03-09 23:16:03 +01:00
, libksba, coreutils, libiconv, pcsclite
2015-03-21 14:01:52 +01:00
# Each of the dependencies below are optional.
# Gnupg can be built without them at the cost of reduced functionality.
2015-03-21 14:01:52 +01:00
, pinentry ? null, x11Support ? true
, openldap ? null, bzip2 ? null, libusb ? null, curl ? null
}:
2015-03-21 14:01:52 +01:00
with stdenv.lib;
assert x11Support -> pinentry != null;
stdenv.mkDerivation rec {
2015-07-07 02:14:01 +02:00
name = "gnupg-2.0.28";
src = fetchurl {
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
2015-07-07 02:14:01 +02:00
sha256 = "0k2k399fnhfhhr4dvm8d6vs4ihq6gg06191lzfwikzaqmgj2w2ff";
};
2013-06-11 09:30:54 +02:00
buildInputs
= [ readline zlib libgpgerror libgcrypt libassuan libksba pth
2015-07-10 02:18:29 +02:00
openldap bzip2 curl libiconv ]
++ stdenv.lib.optional (!stdenv.isDarwin) libusb;
patchPhase = ''
find tests -type f | xargs sed -e 's@/bin/pwd@${coreutils}&@g' -i
2015-03-18 01:25:51 +01:00
'' + stdenv.lib.optionalString stdenv.isLinux ''
2015-03-09 23:16:03 +01:00
sed -i 's,"libpcsclite\.so[^"]*","${pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
'' + stdenv.lib.optionalString stdenv.isDarwin ''
find . -name pcsc-wrapper.c | xargs sed -i 's/typedef unsinged int pcsc_dword_t/typedef unsigned int pcsc_dword_t/'
'' + ''
2014-08-17 22:17:13 +02:00
patch gl/stdint_.h < ${./clang.patch}
'';
2015-03-21 14:01:52 +01:00
configureFlags = optional x11Support "--with-pinentry-pgm=${pinentry}/bin/pinentry";
checkPhase="GNUPGHOME=`pwd` ./agent/gpg-agent --daemon make check";
doCheck = true;
meta = {
2013-05-22 12:27:08 +02:00
homepage = "http://gnupg.org/";
description = "free implementation of the OpenPGP standard for encrypting and signing data";
2013-05-22 12:27:08 +02:00
license = stdenv.lib.licenses.gpl3Plus;
longDescription = ''
GnuPG is the GNU project's complete and free implementation of
the OpenPGP standard as defined by RFC4880. 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. Version 2 of GnuPG also provides support for
S/MIME.
'';
2014-09-18 01:16:09 +02:00
maintainers = with stdenv.lib.maintainers; [ roconnor urkud ];
2012-07-17 03:26:04 +02:00
platforms = stdenv.lib.platforms.all;
};
}