1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/system/fio/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, makeWrapper
2021-03-25 11:47:58 +00:00
, libaio, python3, zlib
2018-08-08 12:10:20 +01:00
, withGnuplot ? false, gnuplot ? null }:
stdenv.mkDerivation rec {
pname = "fio";
2021-03-11 11:41:44 +00:00
version = "3.26";
2015-04-23 14:10:54 +01:00
src = fetchFromGitHub {
2018-08-08 12:10:20 +01:00
owner = "axboe";
repo = "fio";
rev = "fio-${version}";
2021-03-11 11:41:44 +00:00
sha256 = "sha256-/Si0McndJ6Xp3ifDr+BStv89LmZyAgof95QkHGT8MGQ=";
};
2015-04-23 14:10:54 +01:00
2021-03-25 11:47:58 +00:00
buildInputs = [ python3 zlib ]
2021-01-15 09:19:50 +00:00
++ lib.optional (!stdenv.isDarwin) libaio;
2015-04-23 14:10:54 +01:00
2018-08-08 12:10:20 +01:00
nativeBuildInputs = [ makeWrapper ];
2021-03-25 11:47:58 +00:00
strictDeps = true;
2015-04-23 14:10:54 +01:00
enableParallelBuilding = true;
postPatch = ''
substituteInPlace Makefile \
--replace "mandir = /usr/share/man" "mandir = \$(prefix)/man" \
--replace "sharedir = /usr/share/fio" "sharedir = \$(prefix)/share/fio"
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
2015-04-23 14:10:54 +01:00
'';
2021-01-15 09:19:50 +00:00
postInstall = lib.optionalString withGnuplot ''
2018-08-08 12:10:20 +01:00
wrapProgram $out/bin/fio2gnuplot \
2021-01-15 09:19:50 +00:00
--prefix PATH : ${lib.makeBinPath [ gnuplot ]}
2018-08-08 12:10:20 +01:00
'';
meta = with lib; {
description = "Flexible IO Tester - an IO benchmark tool";
homepage = "https://git.kernel.dk/cgit/fio/";
license = licenses.gpl2;
platforms = platforms.unix;
};
}