made nur ready

This commit is contained in:
Sebastian Moser
2024-04-02 15:00:51 +02:00
parent 2927717d54
commit 6996146302
2 changed files with 21 additions and 0 deletions

View File

@@ -2,6 +2,7 @@
, fetchFromGitHub
, ncurses
, autoreconfHook
, lib
}:
stdenv.mkDerivation rec {
@@ -19,4 +20,21 @@ stdenv.mkDerivation rec {
ncurses
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;
};
}

View File

@@ -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> { } }: {
cbm = pkgs.callPackage ./mods/cbm.nix {};
}