mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
53 lines
1.4 KiB
Nix
53 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
|
, libaio, python3, zlib
|
|
, withGnuplot ? false, gnuplot ? null }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "fio";
|
|
version = "3.38";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "axboe";
|
|
repo = "fio";
|
|
rev = "fio-${version}";
|
|
sha256 = "sha256-hjU6be1+x4YsY9hztqSD5zIxojs6qRZH7GwEkxPwdus=";
|
|
};
|
|
|
|
buildInputs = [ python3 zlib ]
|
|
++ lib.optional (!stdenv.hostPlatform.isDarwin) libaio;
|
|
|
|
# ./configure does not support autoconf-style --build=/--host=.
|
|
# We use $CC instead.
|
|
configurePlatforms = [ ];
|
|
|
|
nativeBuildInputs = [ makeWrapper python3.pkgs.wrapPython ];
|
|
|
|
strictDeps = true;
|
|
|
|
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
|
|
'';
|
|
|
|
pythonPath = [ python3.pkgs.six ];
|
|
|
|
makeWrapperArgs = lib.optionals withGnuplot [
|
|
"--prefix PATH : ${lib.makeBinPath [ gnuplot ]}"
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapPythonProgramsIn "$out/bin" "$out $pythonPath"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Flexible IO Tester - an IO benchmark tool";
|
|
homepage = "https://git.kernel.dk/cgit/fio/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|