mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
mrtg: 2.17.7 -> 2.17.8
This commit is contained in:
parent
9e8fcb0184
commit
1cf45a505f
@ -1,24 +1,25 @@
|
||||
{ lib, stdenv, fetchurl, perl, gd, rrdtool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
||||
version = "2.17.7";
|
||||
pname = "mrtg";
|
||||
version = "2.17.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://oss.oetiker.ch/mrtg/pub/${pname}-${version}.tar.gz";
|
||||
sha256 = "1hrjqfi290i936nblwpfzjn6v8d8p69frcrvml206nxiiwkcp54v";
|
||||
sha256 = "sha256-GsLgr2ng7N73VeeYylmDSreKwYXCpe/9t2hcWPLvAbQ=";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
perl gd rrdtool
|
||||
perl
|
||||
gd
|
||||
rrdtool
|
||||
];
|
||||
|
||||
meta = {
|
||||
meta = with lib; {
|
||||
description = "The Multi Router Traffic Grapher";
|
||||
homepage = "https://oss.oetiker.ch/mrtg/";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.robberer ];
|
||||
platforms = lib.platforms.unix;
|
||||
license = licenses.gpl2Only;
|
||||
maintainers = with maintainers; [ robberer ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user