mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-17 06:06:13 +03:00
parent
5693c5da8e
commit
421ac69830
@ -19,12 +19,16 @@ stdenv.mkDerivation rec {
|
|||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
dontUseQmakeConfigure = true;
|
dontUseQmakeConfigure = true;
|
||||||
configureFlags = "-config release";
|
configureFlags = [ "-config" "release" ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
sed -i -e 's|/bin/pwd|pwd|g' configure
|
sed -i -e 's|/bin/pwd|pwd|g' configure
|
||||||
'';
|
'';
|
||||||
|
|
||||||
doCheck = true;
|
# The tests fail on darwin because of install_name if they run
|
||||||
|
# before the frameworks are installed.
|
||||||
|
doInstallCheck = true;
|
||||||
|
installCheckTarget = "check";
|
||||||
|
|
||||||
# Hack to avoid TMPDIR in RPATHs.
|
# Hack to avoid TMPDIR in RPATHs.
|
||||||
preFixup = "rm -rf lib";
|
preFixup = "rm -rf lib";
|
||||||
|
Loading…
Reference in New Issue
Block a user