iops: remove
Upstream is gone
This commit is contained in:
parent
82da8aaa53
commit
f57aa4795c
@ -1,29 +0,0 @@
|
||||
{ lib, 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 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
|
||||
};
|
||||
}
|
||||
|
@ -422,6 +422,7 @@ mapAliases ({
|
||||
infiniband-diags = rdma-core; # added 2019-08-09
|
||||
inotifyTools = inotify-tools;
|
||||
inter-ui = inter; # added 2021-03-27
|
||||
iops = throw "iops was removed: upstream is gone"; # added 2022-02-06
|
||||
iproute = iproute2; # moved from top-level 2021-03-14
|
||||
ipsecTools = throw "ipsecTools has benn removed, because it was no longer maintained upstream"; # added 2021-12-15
|
||||
i-score = throw "i-score has been removed: abandoned upstream."; # added 2020-11-21
|
||||
|
@ -6720,8 +6720,6 @@ with pkgs;
|
||||
|
||||
ioping = callPackage ../tools/system/ioping { };
|
||||
|
||||
iops = callPackage ../tools/system/iops { };
|
||||
|
||||
ior = callPackage ../tools/system/ior { };
|
||||
|
||||
iouyap = callPackage ../tools/networking/iouyap { };
|
||||
|
Loading…
Reference in New Issue
Block a user