2015-01-22 17:57:29 +00:00
|
|
|
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff }:
|
2009-03-25 19:13:24 +00:00
|
|
|
|
2015-01-22 17:57:29 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-11-20 16:11:09 +00:00
|
|
|
name = "rrdtool-1.5.5";
|
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";
|
2015-11-20 16:11:09 +00:00
|
|
|
sha256 = "1xm6ikzx8iaa6r7v292k8s7srkzhnifamp1szkimgmh5ki26sa1s";
|
2009-03-25 19:13:24 +00:00
|
|
|
};
|
2015-01-22 17:57:29 +00:00
|
|
|
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ];
|
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;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
2009-03-25 19:13:24 +00:00
|
|
|
};
|
|
|
|
}
|