Merge pull request #138579 from fabaff/bump-wavemon

wavemon: 0.9.3 -> 0.9.4
This commit is contained in:
Michael Raskin 2021-09-20 13:12:10 +00:00 committed by GitHub
commit c3a8016c29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;
};
}