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