summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2022-02-06 23:14:27 +0100
committerJonathan Ringer <jonringer@users.noreply.github.com>2022-02-06 16:56:17 -0800
commitf57aa4795c2d63d178fe9cf5e664cd655d47ceba (patch)
treefa7e3be8c3d60970207939ac9c7a5678282d7ba9 /pkgs/tools/system
parent82da8aaa53481a202158e357fbfab0c1c4260956 (diff)
downloadnixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar.gz
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar.bz2
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar.lz
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar.xz
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.tar.zst
nixpkgs-f57aa4795c2d63d178fe9cf5e664cd655d47ceba.zip
iops: remove
Upstream is gone
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/iops/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/tools/system/iops/default.nix b/pkgs/tools/system/iops/default.nix
deleted file mode 100644
index b2be488673e..00000000000
--- a/pkgs/tools/system/iops/default.nix
+++ /dev/null
@@ -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
-  };
-}
-