lol
0
fork

Configure Feed

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

Merge pull request #10060 from matthiasbeyer/update-bwm_ng

bwm_ng: 0.6 -> 0.6.1

+7 -4
+7 -4
pkgs/tools/networking/bwm-ng/default.nix
··· 1 1 { stdenv, fetchurl, ncurses }: 2 2 3 + let 4 + version = "0.6.1"; 5 + in 3 6 stdenv.mkDerivation rec { 4 - name = "bwm-ng-0.6"; 5 - 7 + name = "bwm-ng-${version}"; 8 + 6 9 src = fetchurl { 7 10 url = "http://www.gropp.org/bwm-ng/${name}.tar.gz"; 8 - sha256 = "1pgzc8y2y73n72qvbd2g0dkbkw5h0f83k5h9id1rsck8w9c464y1"; 11 + sha256 = "1w0dwpjjm9pqi613i8glxrgca3rdyqyp3xydzagzr5ndc34z6z02"; 9 12 }; 10 13 11 14 buildInputs = [ ncurses ]; ··· 42 45 This was influenced by the old bwm util written by Barney (barney@freewill.tzo.com) which had some issues with faster interfaces and was very simple. Since i had almost all code done anyway for other projects, i decided to create my own version. 43 46 44 47 I actually don't know if netstat input is useful at all. I saw this elsewhere, so i added it. Its target is "netstat 1.42 (2001-04-15)" linux or Free/Open/netBSD. If there are other formats i would be happy to add them. 45 - 48 + 46 49 (from homepage) 47 50 ''; 48 51 };