gnupg: build with sqlite to enable TOFU

See https://lists.gnupg.org/pipermail/gnupg-users/2015-October/054608.html.
This commit is contained in:
Franz Pletz
2016-12-29 02:30:26 +01:00
committed by Robin Gloster
parent 655f7043b8
commit 3c104ca71c
+2 -2
View File
@@ -1,5 +1,5 @@
{ fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth { fetchurl, stdenv, pkgconfig, libgcrypt, libassuan, libksba, libiconv, npth
, gettext, texinfo, pcsclite , gettext, texinfo, pcsclite, sqlite
# Each of the dependencies below are optional. # Each of the dependencies below are optional.
# Gnupg can be built without them at the cost of reduced functionality. # Gnupg can be built without them at the cost of reduced functionality.
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo pkgconfig libgcrypt libassuan libksba libiconv npth gettext texinfo
readline libusb gnutls adns openldap zlib bzip2 readline libusb gnutls adns openldap zlib bzip2 sqlite
]; ];
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl"; NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";