wavemon: 0.9.3 -> 0.9.4

main
Fabian Affolter 3 years ago
parent 772c3e6ec5
commit 9e421bf422
  1. 26
      pkgs/tools/networking/wavemon/default.nix

@ -1,24 +1,36 @@
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }:
{ lib
, stdenv
, fetchFromGitHub
, libnl
, ncurses
, pkg-config
}:
stdenv.mkDerivation rec {
pname = "wavemon";
version = "0.9.3";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses libnl ];
version = "0.9.4";
src = fetchFromGitHub {
owner = "uoaerg";
repo = "wavemon";
rev = "v${version}";
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193";
sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh";
};
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 = lib.platforms.linux;
platforms = platforms.linux;
};
}

Loading…
Cancel
Save