From f57aa4795c2d63d178fe9cf5e664cd655d47ceba Mon Sep 17 00:00:00 2001 From: c0bw3b Date: Sun, 6 Feb 2022 23:14:27 +0100 Subject: iops: remove Upstream is gone --- pkgs/tools/system/iops/default.nix | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 pkgs/tools/system/iops/default.nix (limited to 'pkgs/tools') 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 - }; -} - -- cgit 1.4.1