2022-05-10 21:52:26 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2018-11-26 21:16:16 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "nbench-byte";
|
2018-11-26 21:16:16 +00:00
|
|
|
version = "2.2.3";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "http://www.math.utah.edu/~mayer/linux/${pname}-${version}.tar.gz";
|
2018-11-26 21:16:16 +00:00
|
|
|
sha256 = "1b01j7nmm3wd92ngvsmn2sbw43sl9fpx4xxmkrink68fz1rx0gbj";
|
|
|
|
};
|
|
|
|
|
|
|
|
prePatch = ''
|
|
|
|
substituteInPlace nbench1.h --replace '"NNET.DAT"' "\"$out/NNET.DAT\""
|
2022-03-29 05:11:42 +00:00
|
|
|
substituteInPlace sysspec.h --replace "malloc.h" "stdlib.h"
|
|
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace Makefile --replace "-static" ""
|
2018-11-26 21:16:16 +00:00
|
|
|
'';
|
2022-03-29 05:11:42 +00:00
|
|
|
|
2022-05-09 20:54:42 +00:00
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isGnu [
|
2022-05-10 21:52:26 +00:00
|
|
|
stdenv.cc.libc.static
|
2022-05-09 20:54:42 +00:00
|
|
|
];
|
|
|
|
|
2022-03-29 05:11:42 +00:00
|
|
|
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
|
|
|
|
|
2018-11-26 21:16:16 +00:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp nbench $out/bin
|
|
|
|
cp NNET.DAT $out
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.math.utah.edu/~mayer/linux/bmark.html";
|
2018-11-26 21:16:16 +00:00
|
|
|
description = "A synthetic computing benchmark program";
|
2022-03-29 05:11:42 +00:00
|
|
|
platforms = platforms.unix;
|
2021-01-15 09:19:50 +00:00
|
|
|
maintainers = with lib.maintainers; [ bennofs ];
|
2018-11-26 21:16:16 +00:00
|
|
|
};
|
|
|
|
}
|