Merge pull request #138579 from fabaff/bump-wavemon
wavemon: 0.9.3 -> 0.9.4
This commit is contained in:
commit
c3a8016c29
1 changed files with 19 additions and 7 deletions
|
@ -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…
Reference in a new issue