wavemon: 0.7.6.20151001 -> 0.8.1
This commit is contained in:
parent
44d28369a3
commit
6d9bdb55fc
|
@ -1,20 +1,26 @@
|
||||||
{stdenv, fetchgit, ncurses, libnl, pkgconfig}:
|
{ stdenv, fetchFromGitHub, ncurses, libnl, pkgconfig }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.7.6.20151001";
|
version = "0.8.1";
|
||||||
baseName="wavemon";
|
baseName = "wavemon";
|
||||||
name="${baseName}-${version}";
|
name = "${baseName}-${version}";
|
||||||
buildInputs = [ncurses libnl pkgconfig];
|
|
||||||
src = fetchgit {
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
url = https://github.com/uoaerg/wavemon.git ;
|
buildInputs = [ ncurses libnl ];
|
||||||
rev = "05753aed2ec5a786d602c7903c89fc6a230f8d42";
|
|
||||||
sha256 = "13y4bi4qz4596f11ng6zaqir5j234wv64z4670q3pzh3fqmzmpm4";
|
src = fetchFromGitHub {
|
||||||
|
owner = "uoaerg";
|
||||||
|
repo = "wavemon";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0mx61rzl8a66pmigv2fh75zgdalxx75a5s1b7ydbviz18ihhjyls";
|
||||||
};
|
};
|
||||||
meta = {
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = "WiFi state monitor";
|
description = "Ncurses-based monitoring application for wireless network devices";
|
||||||
license = stdenv.lib.licenses.gpl3Plus ;
|
homepage = https://github.com/uoaerg/wavemon;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ raskin fpletz ];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
downloadPage = https://github.com/uoaerg/wavemon.git ;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue