nixpkgs/pkgs/tools/misc/mrtg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
576 B
Nix
Raw Normal View History

2021-01-15 09:19:50 +00:00
{ lib, stdenv, fetchurl, perl, gd, rrdtool }:
stdenv.mkDerivation rec {
pname = "mrtg";
2022-02-12 13:43:37 +00:00
version = "2.17.10";
src = fetchurl {
url = "https://oss.oetiker.ch/mrtg/pub/${pname}-${version}.tar.gz";
2022-02-12 13:43:37 +00:00
sha256 = "sha256-x/EcteIXpQDYfuO10mxYqGUu28DTKRaIu3krAQ+uQ6w=";
};
buildInputs = [
2021-08-30 08:35:09 +00:00
perl
gd
rrdtool
];
2021-08-30 08:35:09 +00:00
meta = with lib; {
description = "The Multi Router Traffic Grapher";
homepage = "https://oss.oetiker.ch/mrtg/";
2021-08-30 08:35:09 +00:00
license = licenses.gpl2Only;
maintainers = with maintainers; [ robberer ];
platforms = platforms.unix;
2016-08-02 15:51:05 +00:00
};
}