about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/networking/wavemon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/tools/networking/wavemon/default.nix')
-rw-r--r--nixpkgs/pkgs/tools/networking/wavemon/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/tools/networking/wavemon/default.nix b/nixpkgs/pkgs/tools/networking/wavemon/default.nix
new file mode 100644
index 000000000000..c54c4f8691ad
--- /dev/null
+++ b/nixpkgs/pkgs/tools/networking/wavemon/default.nix
@@ -0,0 +1,24 @@
+{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
+
+stdenv.mkDerivation rec {
+  pname = "wavemon";
+  version = "0.9.3";
+
+  nativeBuildInputs = [ pkg-config ];
+  buildInputs = [ ncurses libnl ];
+
+  src = fetchFromGitHub {
+    owner = "uoaerg";
+    repo = "wavemon";
+    rev = "v${version}";
+    sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
+  };
+
+  meta = with lib; {
+    description = "Ncurses-based monitoring application for wireless network devices";
+    homepage = "https://github.com/uoaerg/wavemon";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ raskin fpletz ];
+    platforms = lib.platforms.linux;
+  };
+}