nixpkgs/pkgs/tools/misc/nbench/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
1012 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2018-11-26 21:16:16 +00:00
stdenv.mkDerivation rec {
pname = "nbench-byte";
2018-11-26 21:16:16 +00:00
version = "2.2.3";
src = fetchurl {
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
buildInputs = lib.optionals stdenv.hostPlatform.isGnu [
stdenv.cc.libc.static
];
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
'';
meta = with lib; {
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
};
}