bmon: 3.9 -> 4.0
This commit is contained in:
parent
01fdbac60c
commit
61027b7fce
1 changed files with 4 additions and 6 deletions
|
@ -1,23 +1,21 @@
|
||||||
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, ncurses, confuse
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, confuse
|
||||||
, libnl }:
|
, libnl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "bmon-${version}";
|
name = "bmon-${version}";
|
||||||
version = "3.9";
|
version = "4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "tgraf";
|
owner = "tgraf";
|
||||||
repo = "bmon";
|
repo = "bmon";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1a4sj8pf02392zghr9wa1dc8x38fj093d4hg1fcakzrdjvrg1p2h";
|
sha256 = "1ilba872c09mnlvylslv4hqv6c9cz36l76q74rr99jvis1dg69gf";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoconf automake pkgconfig ];
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||||
|
|
||||||
buildInputs = [ ncurses confuse libnl ];
|
buildInputs = [ ncurses confuse libnl ];
|
||||||
|
|
||||||
preConfigure = "sh ./autogen.sh";
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Network bandwidth monitor";
|
description = "Network bandwidth monitor";
|
||||||
homepage = https://github.com/tgraf/bmon;
|
homepage = https://github.com/tgraf/bmon;
|
||||||
|
|
Loading…
Reference in a new issue