mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 00:08:32 +01:00
Merge pull request #9967 from davidak/add-package-iops
iops: init at 0.1
This commit is contained in:
commit
4cbed031e3
3 changed files with 34 additions and 2 deletions
|
@ -70,6 +70,7 @@
|
|||
cstrahan = "Charles Strahan <charles.c.strahan@gmail.com>";
|
||||
cwoac = "Oliver Matthews <oliver@codersoffortune.net>";
|
||||
DamienCassou = "Damien Cassou <damien@cassou.me>";
|
||||
davidak = "David Kleuker <post@davidak.de>";
|
||||
davidrusu = "David Rusu <davidrusu.me@gmail.com>";
|
||||
dbohdan = "Danyil Bohdan <danyil.bohdan@gmail.com>";
|
||||
DerGuteMoritz = "Moritz Heidkamp <moritz@twoticketsplease.de>";
|
||||
|
|
29
pkgs/tools/system/iops/default.nix
Normal file
29
pkgs/tools/system/iops/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "iops-${version}";
|
||||
version = "0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.vanheusden.com/iops/${name}.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 = with platforms; unix;
|
||||
};
|
||||
}
|
||||
|
|
@ -1877,9 +1877,11 @@ let
|
|||
|
||||
inetutils = callPackage ../tools/networking/inetutils { };
|
||||
|
||||
innoextract = callPackage ../tools/archivers/innoextract {};
|
||||
innoextract = callPackage ../tools/archivers/innoextract { };
|
||||
|
||||
ioping = callPackage ../tools/system/ioping {};
|
||||
ioping = callPackage ../tools/system/ioping { };
|
||||
|
||||
iops = callPackage ../tools/system/iops { };
|
||||
|
||||
iodine = callPackage ../tools/networking/iodine { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue