nixpkgs-suyu/pkgs/tools/networking/wavemon/default.nix

26 lines
689 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
2017-08-01 08:30:39 +02:00
stdenv.mkDerivation rec {
2021-01-03 09:44:14 +01:00
pname = "wavemon";
version = "0.9.3";
2017-08-01 08:30:39 +02:00
2021-01-03 09:44:14 +01:00
nativeBuildInputs = [ pkg-config ];
2017-08-01 08:30:39 +02:00
buildInputs = [ ncurses libnl ];
src = fetchFromGitHub {
owner = "uoaerg";
repo = "wavemon";
rev = "v${version}";
2021-01-03 09:44:14 +01:00
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
};
2017-08-01 08:30:39 +02:00
meta = with lib; {
2014-09-02 12:17:59 +02:00
inherit version;
2017-08-01 08:30:39 +02:00
description = "Ncurses-based monitoring application for wireless network devices";
homepage = "https://github.com/uoaerg/wavemon";
2017-08-01 08:30:39 +02:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ raskin fpletz ];
2021-01-15 10:19:50 +01:00
platforms = lib.platforms.linux;
};
}