f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
32 lines
724 B
Nix
32 lines
724 B
Nix
{ stdenv, fetchFromGitHub, libaio, python, zlib }:
|
|
|
|
let
|
|
version = "2.99";
|
|
sha256 = "0fj8fk2w06ahcn35z8pj88sx12yrx1yfd38j6k5aigj4dfj3f3zy";
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "fio-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "axboe";
|
|
repo = "fio";
|
|
rev = "fio-${version}";
|
|
inherit sha256;
|
|
};
|
|
|
|
buildInputs = [ libaio python zlib ];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace tools/plot/fio2gnuplot --replace /usr/share/fio $out/share/fio
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://git.kernel.dk/?p=fio.git;a=summary;";
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|