aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gpgme
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 18:32:50 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:30 +0000
commit97aa8b164edb8d832f0b6ed5397b2027020cfbec (patch)
treee825e37a69137ab816e208951173cb9ab90e90d3 /pkgs/development/libraries/gpgme
parent880c9b5185dd9501bf63c391d0e3a22eb1ad42bb (diff)
gpgme: make tests run, but disable. Spooky!
Diffstat (limited to 'pkgs/development/libraries/gpgme')
-rw-r--r--pkgs/development/libraries/gpgme/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/libraries/gpgme/default.nix b/pkgs/development/libraries/gpgme/default.nix
index e7da60a9d1a2..b3b00a1c7226 100644
--- a/pkgs/development/libraries/gpgme/default.nix
+++ b/pkgs/development/libraries/gpgme/default.nix
@@ -44,6 +44,10 @@ stdenv.mkDerivation rec {
# https://www.gnupg.org/documentation/manuals/gpgme/Largefile-Support-_0028LFS_0029.html
++ lib.optional (system == "i686-linux") "-D_FILE_OFFSET_BITS=64";
+ checkInputs = [ which ];
+
+ doCheck = false; # fails 8 out of 26 tests with "GPGME: Decryption failed". Spooky!
+
meta = with stdenv.lib; {
homepage = https://gnupg.org/software/gpgme/index.html;
description = "Library for making GnuPG easier to use";