2019-06-16 21:59:06 +02:00
|
|
|
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
|
2017-04-08 05:55:49 +02:00
|
|
|
, tcl-8_5, darwin }:
|
2009-03-25 20:13:24 +01:00
|
|
|
|
2015-01-22 18:57:29 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-06-03 04:39:23 +02:00
|
|
|
name = "rrdtool-1.7.2";
|
2017-01-22 01:38:29 +01:00
|
|
|
|
2009-03-25 20:13:24 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
|
2019-06-03 04:39:23 +02:00
|
|
|
sha256 = "1nsqra0g2nja19akmf9x5y9hhgc35ml3w9dcdz2ayz7zgvmzm6d1";
|
2009-03-25 20:13:24 +01:00
|
|
|
};
|
2017-01-22 01:38:29 +01:00
|
|
|
|
2017-02-05 19:05:49 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ gettext perl libxml2 pango cairo groff ]
|
2017-04-08 05:55:49 +02:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ tcl-8_5 darwin.apple_sdk.frameworks.ApplicationServices ];
|
2017-01-22 01:38:29 +01:00
|
|
|
|
2014-08-31 16:53:29 +02:00
|
|
|
postInstall = ''
|
2016-02-07 17:16:30 +01:00
|
|
|
# for munin and rrdtool support
|
2018-12-15 04:50:31 +01:00
|
|
|
mkdir -p $out/${perl.libPrefix}
|
|
|
|
mv $out/lib/perl/5* $out/${perl.libPrefix}
|
2014-08-31 16:53:29 +02:00
|
|
|
'';
|
2009-03-25 20:13:24 +01:00
|
|
|
|
2015-01-22 18:57:29 +01:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://oss.oetiker.ch/rrdtool/";
|
2009-03-25 20:13:24 +01:00
|
|
|
description = "High performance logging in Round Robin Databases";
|
2015-01-22 18:57:29 +01:00
|
|
|
license = licenses.gpl2;
|
2016-05-12 01:30:03 +02:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-01-22 18:57:29 +01:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2009-03-25 20:13:24 +01:00
|
|
|
};
|
|
|
|
}
|