nixpkgs-suyu/pkgs/applications/networking/iptraf/default.nix

35 lines
822 B
Nix
Raw Normal View History

2021-01-15 06:42:41 +01:00
{lib, stdenv, fetchurl, ncurses}:
stdenv.mkDerivation rec {
pname = "iptraf";
version = "3.0.1";
2016-08-04 09:40:02 +02:00
src = fetchurl {
url = "ftp://iptraf.seul.org/pub/iptraf/iptraf-${version}tar.gz";
sha256 = "12n059j9iihhpf6spmlaspqzxz3wqan6kkpnhmlj08jdijpnk84m";
};
2016-08-04 09:40:02 +02:00
hardeningDisable = [ "format" ];
2013-03-24 14:43:20 +01:00
patchPhase = ''
sed -i -e 's,#include <linux/if_tr.h>,#include <netinet/if_tr.h>,' src/*
'';
preConfigure = "cd src";
installPhase = ''
mkdir -p $out/bin
cp iptraf $out/bin
'';
2016-08-04 09:40:02 +02:00
buildInputs = [ncurses];
meta = {
homepage = "http://iptraf.seul.org/";
2021-01-15 06:42:41 +01:00
license = lib.licenses.gpl2Plus;
description = "Console-based network statistics utility for Linux";
2021-01-15 06:42:41 +01:00
platforms = lib.platforms.linux;
2020-09-29 12:52:23 +02:00
broken = true; # required isdn headers have been removed from the linux kernel
};
}