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:
parent
3973a56440
commit
266f6ee63a
1 changed files with 3 additions and 1 deletions
|
@ -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)";
|
||||
|
|
Loading…
Reference in a new issue