lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

bmon: 3.9 -> 4.0

+4 -6
+4 -6
pkgs/tools/misc/bmon/default.nix
··· 1 - { stdenv, fetchFromGitHub, autoconf, automake, pkgconfig, ncurses, confuse 1 + { stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, ncurses, confuse 2 2 , libnl }: 3 3 4 4 stdenv.mkDerivation rec { 5 5 name = "bmon-${version}"; 6 - version = "3.9"; 6 + version = "4.0"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "tgraf"; 10 10 repo = "bmon"; 11 11 rev = "v${version}"; 12 - sha256 = "1a4sj8pf02392zghr9wa1dc8x38fj093d4hg1fcakzrdjvrg1p2h"; 12 + sha256 = "1ilba872c09mnlvylslv4hqv6c9cz36l76q74rr99jvis1dg69gf"; 13 13 }; 14 14 15 - nativeBuildInputs = [ autoconf automake pkgconfig ]; 15 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 16 16 17 17 buildInputs = [ ncurses confuse libnl ]; 18 - 19 - preConfigure = "sh ./autogen.sh"; 20 18 21 19 meta = with stdenv.lib; { 22 20 description = "Network bandwidth monitor";