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

42 lines
1.2 KiB
Nix
Raw Normal View History

2018-08-08 12:10:20 +01:00
{ stdenv, fetchFromGitHub, makeWrapper
, libaio, python, zlib
, withGnuplot ? false, gnuplot ? null }:
stdenv.mkDerivation rec {
2015-04-23 14:10:54 +01:00
name = "fio-${version}";
version = "3.15";
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}";
sha256 = "0wzy5byc2qx5mbnwkcyjkrzc662n4wkrzpcg4h611q4ix494zka9";
};
2015-04-23 14:10:54 +01:00
buildInputs = [ python zlib ]
++ stdenv.lib.optional (!stdenv.isDarwin) libaio;
2015-04-23 14:10:54 +01:00
2018-08-08 12:10:20 +01:00
nativeBuildInputs = [ makeWrapper ];
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
'';
2018-08-08 12:10:20 +01:00
postInstall = stdenv.lib.optionalString withGnuplot ''
wrapProgram $out/bin/fio2gnuplot \
--prefix PATH : ${stdenv.lib.makeBinPath [ gnuplot ]}
'';
meta = with stdenv.lib; {
description = "Flexible IO Tester - an IO benchmark tool";
2018-08-08 12:10:20 +01:00
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
license = licenses.gpl2;
platforms = platforms.unix;
};
}