wavemon: 0.9.3 -> 0.9.4

This commit is contained in:
Fabian Affolter 2021-09-19 23:43:35 +02:00
parent 772c3e6ec5
commit 9e421bf422

View file

@ -1,24 +1,36 @@
{ lib, stdenv, fetchFromGitHub, ncurses, libnl, pkg-config }: { lib
, stdenv
, fetchFromGitHub
, libnl
, ncurses
, pkg-config
}:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "wavemon"; pname = "wavemon";
version = "0.9.3"; version = "0.9.4";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ ncurses libnl ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "uoaerg"; owner = "uoaerg";
repo = "wavemon"; repo = "wavemon";
rev = "v${version}"; rev = "v${version}";
sha256 = "0m9n5asjxs1ir5rqprigqcrm976mgjvh4yql1jhfnbszwbf95193"; sha256 = "0s3yz15vzx90fxyb8bgryksn0cr2gpz9inbcx4qjrgs7zfbm4pgh";
}; };
nativeBuildInputs = [
pkg-config
];
buildInputs = [
libnl
ncurses
];
meta = with lib; { meta = with lib; {
description = "Ncurses-based monitoring application for wireless network devices"; description = "Ncurses-based monitoring application for wireless network devices";
homepage = "https://github.com/uoaerg/wavemon"; homepage = "https://github.com/uoaerg/wavemon";
license = licenses.gpl3Plus; license = licenses.gpl3Plus;
maintainers = with maintainers; [ raskin fpletz ]; maintainers = with maintainers; [ raskin fpletz ];
platforms = lib.platforms.linux; platforms = platforms.linux;
}; };
} }