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

27 lines
732 B
Nix
Raw Normal View History

2017-08-01 06:30:39 +00:00
{ stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }:
stdenv.mkDerivation rec {
version = "0.9.0";
2017-08-01 06:30:39 +00:00
baseName = "wavemon";
name = "${baseName}-${version}";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ ncurses libnl ];
src = fetchFromGitHub {
owner = "uoaerg";
repo = "wavemon";
rev = "v${version}";
sha256 = "07cid0h3mcyr74nnrzzf8k5n1p9a4y3wij43jbiaqmkpxilcc1i6";
};
2017-08-01 06:30:39 +00:00
meta = with stdenv.lib; {
2014-09-02 10:17:59 +00:00
inherit version;
2017-08-01 06:30:39 +00:00
description = "Ncurses-based monitoring application for wireless network devices";
homepage = https://github.com/uoaerg/wavemon;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ raskin fpletz ];
platforms = stdenv.lib.platforms.linux;
};
}