1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/networking/wavemon/default.nix

27 lines
734 B
Nix
Raw Normal View History

2017-08-01 07:30:39 +01:00
{ stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }:
stdenv.mkDerivation rec {
2020-01-17 12:26:58 +00:00
version = "0.9.1";
2017-08-01 07:30:39 +01:00
baseName = "wavemon";
name = "${baseName}-${version}";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libnl ];
src = fetchFromGitHub {
owner = "uoaerg";
repo = "wavemon";
rev = "v${version}";
2020-01-17 12:26:58 +00:00
sha256 = "109ycwnjjqc2vpnd8b86njfifczlxglnyv4rh2qmbn2i5nw2wryg";
};
2017-08-01 07:30:39 +01:00
meta = with stdenv.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 ];
platforms = stdenv.lib.platforms.linux;
};
}