depot/third_party/nixpkgs/pkgs/tools/system/iops/default.nix
Default email 8ac5e011d6 Project import generated by Copybara.
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
2020-04-24 19:36:52 -04:00

29 lines
824 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "iops";
version = "0.1";
src = fetchurl {
url = "https://www.vanheusden.com/iops/${pname}-${version}.tgz";
sha256 = "1knih6dwwiicycp5ml09bj3k8j7air9bng070sfnxwfv786y90bz";
};
installPhase = ''
mkdir -p $out/bin
cp iops $out/bin
'';
meta = with stdenv.lib; {
description = "Measure I/O operations per second of a storage device";
longDescription = ''
Iops lets you measure how many I/O operations per second a storage device can perform.
Usefull for determing e.g. the best RAID-setting of your storage device.
'';
homepage = "http://www.vanheusden.com/iops/";
license = licenses.gpl2;
maintainers = with maintainers; [ davidak ];
platforms = platforms.linux; # build problems on Darwin
};
}