-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9967 from davidak/add-package-iops
iops: init at 0.1
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,6 +70,7 @@ | |
cstrahan = "Charles Strahan <[email protected]>"; | ||
cwoac = "Oliver Matthews <[email protected]>"; | ||
DamienCassou = "Damien Cassou <[email protected]>"; | ||
davidak = "David Kleuker <[email protected]>"; | ||
davidrusu = "David Rusu <[email protected]>"; | ||
dbohdan = "Danyil Bohdan <[email protected]>"; | ||
DerGuteMoritz = "Moritz Heidkamp <[email protected]>"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
}; | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters