nixpkgs/pkgs/tools/system/iops/default.nix
Vladimír Čunát 1fe136ea8a
Make all meta.maintainers attributes lists
(cherry picked from commit b714f552392310cd23b8e71402dfa64b629d2190)
The two new changes were really missing on master.
2017-01-03 18:28:20 +01:00

30 lines
819 B
Nix

{ 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 = platforms.linux; # build problems on Darwin
};
}