2016-05-12 00:30:03 +01:00
|
|
|
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
|
|
|
|
, tcl-8_5 }:
|
2009-03-25 19:13:24 +00:00
|
|
|
|
2015-01-22 17:57:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-22 00:38:29 +00:00
|
|
|
name = "rrdtool-1.5.6";
|
|
|
|
|
2009-03-25 19:13:24 +00:00
|
|
|
src = fetchurl {
|
2015-01-22 17:57:29 +00:00
|
|
|
url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
|
2017-01-22 00:38:29 +00:00
|
|
|
sha256 = "1s2cci80g6kbp5p77mkxpfxwvjm1802fw0bjfsa8yjv8g5a7fclq";
|
2009-03-25 19:13:24 +00:00
|
|
|
};
|
2017-01-22 00:38:29 +00:00
|
|
|
|
2016-05-12 00:30:03 +01:00
|
|
|
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin tcl-8_5;
|
2017-01-22 00:38:29 +00:00
|
|
|
|
2014-08-31 15:53:29 +01: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 15:53:29 +01:00
|
|
|
'';
|
2009-03-25 19:13:24 +00:00
|
|
|
|
2015-01-22 17:57:29 +00:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-25 19:13:24 +00:00
|
|
|
homepage = http://oss.oetiker.ch/rrdtool/;
|
|
|
|
description = "High performance logging in Round Robin Databases";
|
2015-01-22 17:57:29 +00:00
|
|
|
license = licenses.gpl2;
|
2016-05-12 00:30:03 +01: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
|
|
|
};
|
|
|
|
}
|