···2122stdenv.mkDerivation rec {
23 pname = "iozone";
24+ version = "3.507";
2526 src = fetchurl {
27 url = "http://www.iozone.org/src/current/iozone${lib.replaceStrings [ "." ] [ "_" ] version}.tar";
28+ hash = "sha256-HoCHraBW9dgBjuC8dmhtQW/CJR7QMDgFXb0K940eXOM=";
29 };
3031 license = fetchurl {
···3839 buildFlags = target;
4041+ # The makefile doesn't define a rule for e.g. libbif.o
42+ # Make will try to evaluate implicit built-in rules for these outputs if building in parallel
43+ # Build in serial so that the main rule builds everything before the implicit ones are attempted
44+ enableParallelBuilding = false;
4546 installPhase = ''
47 mkdir -p $out/{bin,share/doc,libexec,share/man/man1}