Merge pull request #280624 from NickCao/libewf
libewf: fix cross compilation
This commit is contained in:
commit
28b6b5179c
1 changed files with 5 additions and 0 deletions
|
@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ zlib openssl libuuid ]
|
||||
++ lib.optionals stdenv.isDarwin [ bzip2 ];
|
||||
|
||||
# cannot run test program while cross compiling
|
||||
configureFlags = lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
|
||||
"ac_cv_openssl_xts_duplicate_keys=yes"
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Library for support of the Expert Witness Compression Format";
|
||||
homepage = "https://sourceforge.net/projects/libewf/";
|
||||
|
|
Loading…
Reference in a new issue