3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/rrdtool/default.nix

31 lines
949 B
Nix
Raw Normal View History

{ fetchurl, fetchpatch, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
2017-04-08 04:55:49 +01:00
, tcl-8_5, darwin }:
2015-01-22 17:57:29 +00:00
stdenv.mkDerivation rec {
2019-02-06 19:06:57 +00:00
name = "rrdtool-1.7.1";
2017-01-22 00:38:29 +00:00
src = fetchurl {
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
2019-02-06 19:06:57 +00:00
sha256 = "1bhsg119j94xwykp2sbp01hhxcg78gzblfn7j98slrv9va77g6wq";
};
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 ]
2017-04-08 04:55:49 +01: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 15:53:29 +01:00
postInstall = ''
# for munin and rrdtool support
mkdir -p $out/${perl.libPrefix}
mv $out/lib/perl/5* $out/${perl.libPrefix}
2014-08-31 15:53:29 +01: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/;
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 ];
};
}