evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fi / fio / package.nix
blob1f3ea68c2c8a059206d127d7ff2d1e941b6d61b2
1 { lib, stdenv, fetchFromGitHub, makeWrapper
2 , libaio, python3, zlib
3 , withGnuplot ? false, gnuplot ? null }:
5 stdenv.mkDerivation rec {
6   pname = "fio";
7   version = "3.38";
9   src = fetchFromGitHub {
10     owner  = "axboe";
11     repo   = "fio";
12     rev    = "fio-${version}";
13     sha256 = "sha256-hjU6be1+x4YsY9hztqSD5zIxojs6qRZH7GwEkxPwdus=";
14   };
16   buildInputs = [ python3 zlib ]
17     ++ lib.optional (!stdenv.hostPlatform.isDarwin) libaio;
19   # ./configure does not support autoconf-style --build=/--host=.
20   # We use $CC instead.
21   configurePlatforms = [ ];
23   nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ];
25   strictDeps = true;
27   enableParallelBuilding = true;
29   postPatch = ''
30     substituteInPlace Makefile \
31       --replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \
32       --replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio"
33     substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
34   '';
36   pythonPath = [ python3.pkgs.six ];
38   makeWrapperArgs = lib.optionals withGnuplot [
39     "--prefix PATH : ${lib.makeBinPath [ gnuplot ]}"
40   ];
42   postInstall = ''
43     wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
44   '';
46   meta = with lib; {
47     description = "Flexible IO Tester - an IO benchmark tool";
48     homepage = "https://git.kernel.dk/cgit/fio/";
49     license = licenses.gpl2Plus;
50     platforms = platforms.unix;
51   };