rrdtool: update from 1.4.5 to 1.4.9

This commit is contained in:
Pascal Wittmann 2015-01-22 18:57:29 +01:00
parent 0878b2e9be
commit 6bc900d9e7
1 changed files with 10 additions and 9 deletions

View File

@ -1,22 +1,23 @@
{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo }: { fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff }:
stdenv.mkDerivation { stdenv.mkDerivation rec {
name = "rrdtool-1.4.5"; name = "rrdtool-1.4.9";
src = fetchurl { src = fetchurl {
url = http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.5.tar.gz; url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
sha256 = "07fgn0y4yj7p2vh6a37q273hf98gkfw2sdam5r1ldn1k0m1ayrqj"; sha256 = "1k1506v86nijd9vdljib93z4hrwj786kqnx37lqqbbqasvh2ca1y";
}; };
buildInputs = [ gettext perl pkgconfig libxml2 pango cairo ]; buildInputs = [ gettext perl pkgconfig libxml2 pango cairo groff ];
postInstall = '' postInstall = ''
# for munin support # for munin support
mv $out/lib/perl/5*/*/*.pm $out/lib/perl/5*/ mv $out/lib/perl/5*/*/*.pm $out/lib/perl/5*/
''; '';
meta = { meta = with stdenv.lib; {
homepage = http://oss.oetiker.ch/rrdtool/; homepage = http://oss.oetiker.ch/rrdtool/;
description = "High performance logging in Round Robin Databases"; description = "High performance logging in Round Robin Databases";
license = stdenv.lib.licenses.gpl2; license = licenses.gpl2;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
}; };
} }