From 266f6ee63a562016b28d9a155fc4d84006d746d0 Mon Sep 17 00:00:00 2001 From: Jonathan Ringer Date: Mon, 24 May 2021 12:04:06 -0700 Subject: [PATCH] exempi: disable tests for i686 Unable to find boost unittest framework. Tests are still ran on the x86_64 platform --- pkgs/development/libraries/exempi/default.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/exempi/default.nix b/pkgs/development/libraries/exempi/default.nix index 356959b429f..332de1595a0 100644 --- a/pkgs/development/libraries/exempi/default.nix +++ b/pkgs/development/libraries/exempi/default.nix @@ -11,12 +11,14 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-boost=${boost.dev}" + ] ++ lib.optionals (!doCheck) [ + "--enable-unittest=no" ]; buildInputs = [ expat zlib boost ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.CoreServices ]; - doCheck = stdenv.isLinux; + doCheck = stdenv.isLinux && stdenv.is64bit; meta = with lib; { description = "An implementation of XMP (Adobe's Extensible Metadata Platform)";