1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-28 08:31:59 +00:00
nixpkgs/pkgs/tools/misc/rrdtool/default.nix

31 lines
880 B
Nix
Raw Normal View History

{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
, tcl-8_5 }:
2015-01-22 17:57:29 +00:00
stdenv.mkDerivation rec {
2017-02-05 18:05:49 +00:00
name = "rrdtool-1.6.0";
2017-01-22 00:38:29 +00:00
src = fetchurl {
2015-01-22 17:57:29 +00:00
url = "http://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
2017-02-05 18:05:49 +00:00
sha256 = "1msj1qsy3sdmx2g2rngp9a9qv50hz0ih7yx6nkx2b21drn4qx56d";
};
2017-01-22 00:38:29 +00:00
2017-02-05 18:05:49 +00:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext perl 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 = ''
# 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
'';
2015-01-22 17:57:29 +00:00
meta = with stdenv.lib; {
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 ++ platforms.darwin;
2015-01-22 17:57:29 +00:00
maintainers = with maintainers; [ pSub ];
};
}