From e2e7c44a9e78067087e93c2fe5ddacbd98a78540 Mon Sep 17 00:00:00 2001 From: ajs124 Date: Thu, 2 Jun 2022 17:51:46 +0200 Subject: [PATCH] iptraf: remove after being marked broken for over 18 months It was marked in commit 5b65d3e7bc5024f85d479f0d8fe2c8cdbf6f0c88 by Enno Richter on 2020-09-29 (commited on 2020-09-29) --- .../networking/iptraf/default.nix | 34 ------------------- pkgs/top-level/all-packages.nix | 2 -- 2 files changed, 36 deletions(-) delete mode 100644 pkgs/applications/networking/iptraf/default.nix diff --git a/pkgs/applications/networking/iptraf/default.nix b/pkgs/applications/networking/iptraf/default.nix deleted file mode 100644 index 2881991bf823..000000000000 --- a/pkgs/applications/networking/iptraf/default.nix +++ /dev/null @@ -1,34 +0,0 @@ -{lib, stdenv, fetchurl, ncurses}: - -stdenv.mkDerivation rec { - pname = "iptraf"; - version = "3.0.1"; - - src = fetchurl { - url = "ftp://iptraf.seul.org/pub/iptraf/iptraf-${version}tar.gz"; - sha256 = "12n059j9iihhpf6spmlaspqzxz3wqan6kkpnhmlj08jdijpnk84m"; - }; - - hardeningDisable = [ "format" ]; - - patchPhase = '' - sed -i -e 's,#include ,#include ,' src/* - ''; - - preConfigure = "cd src"; - - installPhase = '' - mkdir -p $out/bin - cp iptraf $out/bin - ''; - - buildInputs = [ncurses]; - - meta = { - homepage = "http://iptraf.seul.org/"; - license = lib.licenses.gpl2Plus; - description = "Console-based network statistics utility for Linux"; - platforms = lib.platforms.linux; - broken = true; # required isdn headers have been removed from the linux kernel - }; -} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index a587a3314ac9..f85008499da8 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -27428,8 +27428,6 @@ with pkgs; lua5 = lua5_3; }; - iptraf = callPackage ../applications/networking/iptraf { }; - iptraf-ng = callPackage ../applications/networking/iptraf-ng { }; irccloud = callPackage ../applications/networking/irc/irccloud { };