2019-03-16 15:45:23 +00:00
|
|
|
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libgpgerror
|
2017-02-20 03:30:01 +00:00
|
|
|
, libiconv, npth, gettext, texinfo, pcsclite, sqlite
|
2019-03-16 15:45:23 +00:00
|
|
|
, buildPackages
|
2015-03-21 13:01:52 +00:00
|
|
|
|
|
|
|
# Each of the dependencies below are optional.
|
|
|
|
# Gnupg can be built without them at the cost of reduced functionality.
|
2016-06-17 09:26:41 +01:00
|
|
|
, pinentry ? null, guiSupport ? true
|
2015-03-21 13:01:52 +00:00
|
|
|
, adns ? null, gnutls ? null, libusb ? null, openldap ? null
|
|
|
|
, readline ? null, zlib ? null, bzip2 ? null
|
2014-10-31 18:47:03 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
2016-06-17 09:26:41 +01:00
|
|
|
assert guiSupport -> pinentry != null;
|
2015-03-21 13:01:52 +00:00
|
|
|
|
2014-10-31 18:47:03 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-06-23 08:26:48 +01:00
|
|
|
name = "gnupg-${version}";
|
|
|
|
|
2019-05-29 03:04:13 +01:00
|
|
|
version = "2.2.16";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnupg/gnupg/${name}.tar.bz2";
|
2019-05-29 03:04:13 +01:00
|
|
|
sha256 = "1jqlzp9b3kpfp1dkjqskm67jjrhvf9nh3lzf45321p7m9d2qvgkc";
|
2014-10-31 18:47:03 +00:00
|
|
|
};
|
|
|
|
|
2019-03-16 15:45:23 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2017-09-14 20:24:37 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-10-31 18:47:03 +00:00
|
|
|
buildInputs = [
|
2017-09-14 20:24:37 +01:00
|
|
|
libgcrypt libassuan libksba libiconv npth gettext texinfo
|
2016-11-22 20:19:14 +00:00
|
|
|
readline libusb gnutls adns openldap zlib bzip2 sqlite
|
2014-10-31 18:47:03 +00:00
|
|
|
];
|
|
|
|
|
2017-02-20 03:30:01 +00:00
|
|
|
patches = [
|
|
|
|
./fix-libusb-include-path.patch
|
|
|
|
];
|
2016-03-18 09:12:15 +00:00
|
|
|
postPatch = stdenv.lib.optionalString stdenv.isLinux ''
|
2018-06-21 11:40:15 +01:00
|
|
|
sed -i 's,"libpcsclite\.so[^"]*","${stdenv.lib.getLib pcsclite}/lib/libpcsclite.so",g' scd/scdaemon.c
|
2016-03-18 09:12:15 +00:00
|
|
|
''; #" fix Emacs syntax highlighting :-(
|
|
|
|
|
2016-06-17 10:27:59 +01:00
|
|
|
pinentryBinaryPath = pinentry.binaryPath or "bin/pinentry";
|
2019-03-16 15:45:23 +00:00
|
|
|
configureFlags = [
|
|
|
|
"--with-libgpg-error-prefix=${libgpgerror.dev}"
|
|
|
|
"--with-libgcrypt-prefix=${libgcrypt.dev}"
|
|
|
|
"--with-libassuan-prefix=${libassuan.dev}"
|
|
|
|
"--with-ksba-prefix=${libksba.dev}"
|
|
|
|
"--with-npth-prefix=${npth}"
|
|
|
|
] ++ optional guiSupport "--with-pinentry-pgm=${pinentry}/${pinentryBinaryPath}";
|
2014-10-31 18:47:03 +00:00
|
|
|
|
2017-02-18 10:32:35 +00:00
|
|
|
postInstall = ''
|
|
|
|
mkdir -p $out/lib/systemd/user
|
|
|
|
for f in doc/examples/systemd-user/*.{service,socket} ; do
|
|
|
|
substitute $f $out/lib/systemd/user/$(basename $f) \
|
|
|
|
--replace /usr/bin $out/bin
|
|
|
|
done
|
2017-09-10 10:10:24 +01:00
|
|
|
|
|
|
|
# add gpg2 symlink to make sure git does not break when signing commits
|
|
|
|
ln -s $out/bin/gpg $out/bin/gpg2
|
2017-02-18 10:32:35 +00:00
|
|
|
'';
|
|
|
|
|
2014-10-31 18:47:03 +00: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 = "Modern (2.1) release of the GNU Privacy Guard, a GPL OpenPGP implementation";
|
2014-10-31 18:47:03 +00:00
|
|
|
license = licenses.gpl3Plus;
|
2017-03-27 20:47:38 +01:00
|
|
|
longDescription = ''
|
|
|
|
The GNU Privacy Guard is the GNU project's complete and free
|
|
|
|
implementation of the OpenPGP standard as defined by RFC4880. GnuPG
|
|
|
|
"modern" (2.1) is the latest development with a lot of new features.
|
|
|
|
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.
|
|
|
|
'';
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ peti fpletz vrthra ];
|
2014-10-31 18:47:03 +00:00
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|