python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / nbench / default.nix
blob0ce1d66cf2142ce77d972e107cd69c743e77085e
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "nbench-byte";
5   version = "2.2.3";
7   src = fetchurl {
8     url = "http://www.math.utah.edu/~mayer/linux/${pname}-${version}.tar.gz";
9     sha256 = "1b01j7nmm3wd92ngvsmn2sbw43sl9fpx4xxmkrink68fz1rx0gbj";
10   };
12   prePatch = ''
13     substituteInPlace nbench1.h --replace '"NNET.DAT"' "\"$out/NNET.DAT\""
14     substituteInPlace sysspec.h --replace "malloc.h" "stdlib.h"
15   '' + lib.optionalString stdenv.isDarwin ''
16     substituteInPlace Makefile --replace "-static" ""
17   '';
19   buildInputs = lib.optionals stdenv.hostPlatform.isGnu [
20     stdenv.cc.libc.static
21   ];
23   makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
25   installPhase = ''
26     mkdir -p $out/bin
27     cp nbench $out/bin
28     cp NNET.DAT $out
29   '';
31   meta = with lib; {
32     homepage = "https://www.math.utah.edu/~mayer/linux/bmark.html";
33     description = "A synthetic computing benchmark program";
34     platforms = platforms.unix;
35     maintainers = with lib.maintainers; [ bennofs ];
36   };