65d981efc0
Semi-automatic update. These checks were performed: - built on NixOS - ran `/nix/store/kzknr8h49w4xv1qam0049r4ygd65vkab-wavemon-0.8.2/bin/wavemon -h` got 0 exit code - ran `/nix/store/kzknr8h49w4xv1qam0049r4ygd65vkab-wavemon-0.8.2/bin/wavemon -v` and found version 0.8.2 - found 0.8.2 with grep in /nix/store/kzknr8h49w4xv1qam0049r4ygd65vkab-wavemon-0.8.2 - found 0.8.2 in filename of file in /nix/store/kzknr8h49w4xv1qam0049r4ygd65vkab-wavemon-0.8.2 cc "@raskin @fpletz"
27 lines
732 B
Nix
27 lines
732 B
Nix
{ stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.8.2";
|
|
baseName = "wavemon";
|
|
name = "${baseName}-${version}";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ ncurses libnl ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uoaerg";
|
|
repo = "wavemon";
|
|
rev = "v${version}";
|
|
sha256 = "0rqpp7rhl9rlwnihsapaiy62v33h45fm3d0ia2nhdjw7fwkwcqvs";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
inherit version;
|
|
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;
|
|
};
|
|
}
|