forked from mirrors/nixpkgs
gpgme: fix build on i686-linux
This commit is contained in:
parent
c4dd3d9b24
commit
da9c6a7744
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue