Adding iptraf 3.0.0 (the last iptraf I found, last updated in 2005)
It runs without complains if you "mkdir -p /var/run/iptraf /var/local/iptraf" svn path=/nixpkgs/trunk/; revision=17752
This commit is contained in:
parent
9444b0f4a4
commit
71fab59b62
25
pkgs/applications/networking/iptraf/default.nix
Normal file
25
pkgs/applications/networking/iptraf/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{stdenv, fetchurl, ncurses}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "iptraf-3.0.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = ftp://iptraf.seul.org/pub/iptraf/iptraf-3.0.0.tar.gz;
|
||||||
|
sha256 = "0qsi5f8d84mgdszvz22acyv6mjnbrpk55d54km9i5mkkapck7r4y";
|
||||||
|
};
|
||||||
|
|
||||||
|
preConfigure = "cd src";
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
ensureDir $out/bin
|
||||||
|
cp iptraf $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
buildInputs = [ncurses];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = http://iptraf.seul.org/;
|
||||||
|
license = "GPLv2+";
|
||||||
|
description = "Console-based network statistics utility for Linux";
|
||||||
|
};
|
||||||
|
}
|
@ -7137,6 +7137,10 @@ let
|
|||||||
lua = lua5;
|
lua = lua5;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
iptraf = import ../applications/networking/iptraf {
|
||||||
|
inherit fetchurl stdenv ncurses;
|
||||||
|
};
|
||||||
|
|
||||||
irssi = import ../applications/networking/irc/irssi {
|
irssi = import ../applications/networking/irc/irssi {
|
||||||
inherit stdenv fetchurl pkgconfig ncurses openssl;
|
inherit stdenv fetchurl pkgconfig ncurses openssl;
|
||||||
inherit (gtkLibs) glib;
|
inherit (gtkLibs) glib;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user