lol

exempi: disable tests for i686

Unable to find boost unittest framework.

Tests are still ran on the x86_64 platform

authored by

Jonathan Ringer and committed by
Jonathan Ringer
266f6ee6 3973a564

+3 -1
+3 -1
pkgs/development/libraries/exempi/default.nix
··· 11 11 12 12 configureFlags = [ 13 13 "--with-boost=${boost.dev}" 14 + ] ++ lib.optionals (!doCheck) [ 15 + "--enable-unittest=no" 14 16 ]; 15 17 16 18 buildInputs = [ expat zlib boost ] 17 19 ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.CoreServices ]; 18 20 19 - doCheck = stdenv.isLinux; 21 + doCheck = stdenv.isLinux && stdenv.is64bit; 20 22 21 23 meta = with lib; { 22 24 description = "An implementation of XMP (Adobe's Extensible Metadata Platform)";