3
0
Fork 0
forked from mirrors/nixpkgs

gpgme: fix build on i686-linux

This commit is contained in:
Thomas Tuegel 2016-10-10 13:37:05 -05:00
parent c4dd3d9b24
commit da9c6a7744
No known key found for this signature in database
GPG key ID: 22CBF5249D4B4D59

View file

@ -28,6 +28,9 @@ stdenv.mkDerivation rec {
"--enable-fixed-path=${gpgStorePath}/bin"
];
NIX_CFLAGS_COMPILE =
with stdenv; lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
meta = with stdenv.lib; {
homepage = "http://www.gnupg.org/related_software/gpgme";
description = "Library for making GnuPG easier to use";