python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / misc / mrtg / default.nix
blob343a3d5c2a253bfe98cc657680fc001968199d4d
1 { lib, stdenv, fetchurl, perl, gd, rrdtool }:
3 stdenv.mkDerivation rec {
4   pname = "mrtg";
5   version = "2.17.10";
7   src = fetchurl {
8     url = "https://oss.oetiker.ch/mrtg/pub/${pname}-${version}.tar.gz";
9     sha256 = "sha256-x/EcteIXpQDYfuO10mxYqGUu28DTKRaIu3krAQ+uQ6w=";
10   };
12   buildInputs = [
13     perl
14     gd
15     rrdtool
16   ];
18   meta = with lib; {
19     description = "The Multi Router Traffic Grapher";
20     homepage = "https://oss.oetiker.ch/mrtg/";
21     license = licenses.gpl2Only;
22     maintainers = with maintainers; [ robberer ];
23     platforms = platforms.unix;
24   };