exempi: disable tests for i686

Unable to find boost unittest framework.

Tests are still ran on the x86_64 platform
This commit is contained in:
Jonathan Ringer 2021-05-24 12:04:06 -07:00 committed by Jonathan Ringer
parent 3973a56440
commit 266f6ee63a

View file

@ -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)";