3
0
Fork 0
forked from mirrors/nixpkgs

bmon: 3.9 -> 4.0

This commit is contained in:
Pascal Wittmann 2016-12-31 18:06:11 +01:00
parent 01fdbac60c
commit 61027b7fce
No known key found for this signature in database
GPG key ID: C899ACE7E2322852

View file

@ -1,23 +1,21 @@
{ stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, ncurses, confuse
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, confuse
, libnl }:
stdenv.mkDerivation rec {
name = "bmon-${version}";
version = "3.9";
version = "4.0";
src = fetchFromGitHub {
owner = "tgraf";
repo = "bmon";
rev = "v${version}";
sha256 = "1a4sj8pf02392zghr9wa1dc8x38fj093d4hg1fcakzrdjvrg1p2h";
sha256 = "1ilba872c09mnlvylslv4hqv6c9cz36l76q74rr99jvis1dg69gf";
};
nativeBuildInputs = [ autoconf automake pkgconfig ];
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ ncurses confuse libnl ];
preConfigure = "sh ./autogen.sh";
meta = with stdenv.lib; {
description = "Network bandwidth monitor";
homepage = https://github.com/tgraf/bmon;