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

26 lines
689 B
Nix
Raw Normal View History

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