nbench: fix darwin build
This commit is contained in:
parent
291eb6f682
commit
54066822a5
1 changed files with 7 additions and 5 deletions
|
@ -9,13 +9,15 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "1b01j7nmm3wd92ngvsmn2sbw43sl9fpx4xxmkrink68fz1rx0gbj";
|
sha256 = "1b01j7nmm3wd92ngvsmn2sbw43sl9fpx4xxmkrink68fz1rx0gbj";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ stdenv.cc.libc.static ];
|
|
||||||
prePatch = ''
|
prePatch = ''
|
||||||
substituteInPlace nbench1.h --replace '"NNET.DAT"' "\"$out/NNET.DAT\""
|
substituteInPlace nbench1.h --replace '"NNET.DAT"' "\"$out/NNET.DAT\""
|
||||||
|
substituteInPlace sysspec.h --replace "malloc.h" "stdlib.h"
|
||||||
|
'' + lib.optionalString stdenv.isDarwin ''
|
||||||
|
substituteInPlace Makefile --replace "-static" ""
|
||||||
'';
|
'';
|
||||||
preBuild = ''
|
|
||||||
makeFlagsArray=(CC=$CC)
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
||||||
'';
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p $out/bin
|
mkdir -p $out/bin
|
||||||
cp nbench $out/bin
|
cp nbench $out/bin
|
||||||
|
@ -25,7 +27,7 @@ stdenv.mkDerivation rec {
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://www.math.utah.edu/~mayer/linux/bmark.html";
|
homepage = "https://www.math.utah.edu/~mayer/linux/bmark.html";
|
||||||
description = "A synthetic computing benchmark program";
|
description = "A synthetic computing benchmark program";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
maintainers = with lib.maintainers; [ bennofs ];
|
maintainers = with lib.maintainers; [ bennofs ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue