python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / bmon / default.nix
blob758a42d15385934f044dbd48c796b0e8ab79815e
1 { lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, ncurses, libconfuse
2 , libnl }:
4 stdenv.mkDerivation rec {
5   pname = "bmon";
6   version = "4.0";
8   src = fetchFromGitHub {
9     owner = "tgraf";
10     repo = "bmon";
11     rev = "v${version}";
12     sha256 = "1ilba872c09mnlvylslv4hqv6c9cz36l76q74rr99jvis1dg69gf";
13   };
15   nativeBuildInputs = [ autoreconfHook pkg-config ];
17   buildInputs = [ ncurses libconfuse ] ++ lib.optional stdenv.isLinux libnl;
19   preConfigure = ''
20     # Must be an absolute path
21     export PKG_CONFIG="$(command -v "$PKG_CONFIG")"
22   '';
24   meta = with lib; {
25     description = "Network bandwidth monitor";
26     homepage = "https://github.com/tgraf/bmon";
27     # Licensed unter BSD and MIT
28     #  - https://github.com/tgraf/bmon/blob/master/LICENSE.BSD
29     #  - https://github.com/tgraf/bmon/blob/master/LICENSE.MIT
30     license = licenses.bsd2;
31     platforms = platforms.unix;
32     maintainers = with maintainers; [ bjornfor pSub ];
33   };