2017-06-23 05:47:46 +00:00
|
|
|
{ fetchurl, fetchpatch, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
|
2017-04-08 03:55:49 +00:00
|
|
|
, tcl-8_5, darwin }:
|
2009-03-25 19:13:24 +00:00
|
|
|
|
2015-01-22 17:57:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-06-18 09:53:17 +00:00
|
|
|
name = "rrdtool-1.7.0";
|
2017-01-22 00:38:29 +00:00
|
|
|
|
2009-03-25 19:13:24 +00:00
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
|
2017-06-18 09:53:17 +00:00
|
|
|
sha256 = "0ssjqpa0dwwzbylc0drmlbq922qcw8crffc0rpr805xr6n4k8zgr";
|
2009-03-25 19:13:24 +00:00
|
|
|
};
|
2017-01-22 00:38:29 +00:00
|
|
|
|
2017-06-23 05:47:46 +00:00
|
|
|
patches = [
|
|
|
|
# fix regression https://github.com/oetiker/rrdtool-1.x/issues/794
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/oetiker/rrdtool-1.x/compare/0f28f99...f1edd12.patch";
|
|
|
|
sha256 = "10g56zy0rdjpv3kvvmf6vvaysmla05wi8byy3l0xrz2x8m02ylqq";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2017-02-05 18:05:49 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ gettext perl libxml2 pango cairo groff ]
|
2017-04-08 03:55:49 +00:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin [ tcl-8_5 darwin.apple_sdk.frameworks.ApplicationServices ];
|
2017-01-22 00:38:29 +00:00
|
|
|
|
2014-08-31 14:53:29 +00:00
|
|
|
postInstall = ''
|
2016-02-07 16:16:30 +00:00
|
|
|
# for munin and rrdtool support
|
|
|
|
mkdir -p $out/lib/perl5/site_perl/
|
|
|
|
mv $out/lib/perl/5* $out/lib/perl5/site_perl/
|
2014-08-31 14:53:29 +00:00
|
|
|
'';
|
2009-03-25 19:13:24 +00:00
|
|
|
|
2015-01-22 17:57:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-11 16:36:33 +00:00
|
|
|
homepage = https://oss.oetiker.ch/rrdtool/;
|
2009-03-25 19:13:24 +00:00
|
|
|
description = "High performance logging in Round Robin Databases";
|
2015-01-22 17:57:29 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-11 23:30:03 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-01-22 17:57:29 +00:00
|
|
|
maintainers = with maintainers; [ pSub ];
|
2009-03-25 19:13:24 +00:00
|
|
|
};
|
|
|
|
}
|