made nur ready
This commit is contained in:
18
mods/cbm.nix
18
mods/cbm.nix
@@ -2,6 +2,7 @@
|
|||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, ncurses
|
, ncurses
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
|
, lib
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@@ -19,4 +20,21 @@ stdenv.mkDerivation rec {
|
|||||||
ncurses
|
ncurses
|
||||||
autoreconfHook
|
autoreconfHook
|
||||||
];
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A small pogram to display network traffic of interfaces in realtime";
|
||||||
|
longDescription = ''
|
||||||
|
Simple curses-based GUI.
|
||||||
|
|
||||||
|
It is useful for Internet or LAN speed tests, measuring the velocity of a link, to establish a benchmark or to monitor your connections.
|
||||||
|
|
||||||
|
CBM can be used with virtual, wired or wireless networks.
|
||||||
|
|
||||||
|
Originally imported from some tarballs from the Debian Project: http://snapshot.debian.org/package/cbm/. Now maintained by volunteers.
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/resurrecting-open-source-projects/cbm";
|
||||||
|
license = licenses.gpl2Only;
|
||||||
|
#maintainers = [ ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
3
nur.nix
3
nur.nix
@@ -1,3 +1,6 @@
|
|||||||
|
# This is the file for my NUR Repo
|
||||||
|
# Reminder for myself: Any package here should not import <nixpkgs>, but use the pkgs
|
||||||
|
|
||||||
{ pkgs ? import <nixpkgs> { } }: {
|
{ pkgs ? import <nixpkgs> { } }: {
|
||||||
cbm = pkgs.callPackage ./mods/cbm.nix {};
|
cbm = pkgs.callPackage ./mods/cbm.nix {};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user