nixpkgs/pkgs/by-name/jn/jnettop/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

48 lines
1.5 KiB
Nix

{ fetchurl, fetchpatch, lib, stdenv, autoconf, libpcap, ncurses, pkg-config, glib }:
stdenv.mkDerivation rec {
pname = "jnettop";
version = "0.13.0";
src = fetchurl {
url = "http://jnettop.kubs.info/dist/jnettop-${version}.tar.gz";
sha256 = "1855np7c4b0bqzhf1l1dyzxb90fpnvrirdisajhci5am6als31z9";
};
nativeBuildInputs = [ pkg-config autoconf ];
buildInputs = [ libpcap ncurses glib ];
patches = [
./no-dns-resolution.patch
(fetchpatch {
url = "https://sources.debian.net/data/main/j/jnettop/0.13.0-1/debian/patches/0001-Use-64-bit-integers-for-byte-totals-support-bigger-u.patch";
sha256 = "1b0alc12sj8pzcb66f8xslbqlbsvq28kz34v6jfhbb1q25hyr7jg";
})
# Fix pending upstream inclusion for ncurses-6.3:
# https://sourceforge.net/p/jnettop/patches/5/
(fetchpatch {
name = "ncurses-6.3.patch";
url = "https://sourceforge.net/p/jnettop/patches/5/attachment/jnettop-0.13.0-ncurses-6.3.patch";
sha256 = "1a0g3bal6f2fh1sq9q5kfwljrnskfvrhdzhjadcds34gzsr26v7x";
})
];
preConfigure = "autoconf ";
meta = {
description = "Network traffic visualizer";
longDescription = ''
Jnettop is a traffic visualiser, which captures traffic going
through the host it is running from and displays streams sorted
by bandwidth they use.
'';
homepage = "https://sourceforge.net/projects/jnettop/";
license = lib.licenses.gpl2Plus;
platforms = lib.platforms.unix;
mainProgram = "jnettop";
};
}