about summary refs log tree commit diff
path: root/pkgs/tools/misc/mrtg/default.nix
blob: ee6c9776c54b2ab3424e3d7918f91c3f187f5c0b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, stdenv, fetchurl, perl, gd, rrdtool }:

stdenv.mkDerivation rec {
  pname = "mrtg";
  version = "2.17.8";

  src = fetchurl {
    url = "https://oss.oetiker.ch/mrtg/pub/${pname}-${version}.tar.gz";
    sha256 = "sha256-GsLgr2ng7N73VeeYylmDSreKwYXCpe/9t2hcWPLvAbQ=";
  };

  buildInputs = [
    perl
    gd
    rrdtool
  ];

  meta = with lib; {
    description = "The Multi Router Traffic Grapher";
    homepage = "https://oss.oetiker.ch/mrtg/";
    license = licenses.gpl2Only;
    maintainers = with maintainers; [ robberer ];
    platforms = platforms.unix;
  };
}