summary refs log blame commit diff
path: root/pkgs/tools/networking/wavemon/default.nix
blob: 8db0ed674b4f939f1f991ccc8f6164beffd80ec8 (plain) (tree)
1
2
3
4
5
6
7
8
9






                 
 
                         
                    
                    




                         
                                                                   
    
 








                       
                    
                                                                                      
                                                   

                                                      
                                
    
 
{ lib
, stdenv
, fetchFromGitHub
, libnl
, ncurses
, pkg-config
}:

stdenv.mkDerivation rec {
  pname = "wavemon";
  version = "0.9.5";

  src = fetchFromGitHub {
    owner = "uoaerg";
    repo = "wavemon";
    rev = "v${version}";
    sha256 = "sha256-MvIFuPATI0Y7aIYZkb2Yr+iCco4gILHhDU5FWeMCk5Q=";
  };

  nativeBuildInputs = [
    pkg-config
  ];

  buildInputs = [
    libnl
    ncurses
  ];

  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 = platforms.linux;
  };
}