nbench: init at 2.2.3 (#51081)

This commit is contained in:
Benno Fünfstück 2018-11-26 22:16:16 +01:00 committed by GitHub
parent 7ce4cd4470
commit 284c3edbc8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,31 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "nbench-byte-${version}";
version = "2.2.3";
src = fetchurl {
url = "http://www.math.utah.edu/~mayer/linux/${name}.tar.gz";
sha256 = "1b01j7nmm3wd92ngvsmn2sbw43sl9fpx4xxmkrink68fz1rx0gbj";
};
buildInputs = [ stdenv.cc.libc.static ];
prePatch = ''
substituteInPlace nbench1.h --replace '"NNET.DAT"' "\"$out/NNET.DAT\""
'';
preBuild = ''
makeFlagsArray=(CC=$CC)
'';
installPhase = ''
mkdir -p $out/bin
cp nbench $out/bin
cp NNET.DAT $out
'';
meta = with stdenv.lib; {
homepage = https://www.math.utah.edu/~mayer/linux/bmark.html;
description = "A synthetic computing benchmark program";
platforms = platforms.linux;
maintainers = with stdenv.lib.maintainers; [ bennofs ];
};
}

View File

@ -3778,6 +3778,8 @@ with pkgs;
pythonPackages = python3Packages;
};
nbench = callPackage ../tools/misc/nbench { };
netdata = callPackage ../tools/system/netdata {
inherit (darwin.apple_sdk.frameworks) CoreFoundation IOKit;
};