nixpkgs/pkgs/tools/misc/rrdtool/default.nix

31 lines
937 B
Nix
Raw Normal View History

{ fetchurl, stdenv, gettext, perl, pkgconfig, libxml2, pango, cairo, groff
2017-04-07 20:55:49 -07:00
, tcl-8_5, darwin }:
2015-01-22 09:57:29 -08:00
stdenv.mkDerivation rec {
name = "rrdtool-1.7.2";
2017-01-21 16:38:29 -08:00
src = fetchurl {
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
sha256 = "1nsqra0g2nja19akmf9x5y9hhgc35ml3w9dcdz2ayz7zgvmzm6d1";
};
2017-01-21 16:38:29 -08:00
2017-02-05 10:05:49 -08:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ gettext perl libxml2 pango cairo groff ]
2017-04-07 20:55:49 -07:00
++ stdenv.lib.optionals stdenv.isDarwin [ tcl-8_5 darwin.apple_sdk.frameworks.ApplicationServices ];
2017-01-21 16:38:29 -08:00
2014-08-31 07:53:29 -07:00
postInstall = ''
# for munin and rrdtool support
mkdir -p $out/${perl.libPrefix}
mv $out/lib/perl/5* $out/${perl.libPrefix}
2014-08-31 07:53:29 -07:00
'';
2015-01-22 09:57:29 -08:00
meta = with stdenv.lib; {
2017-11-11 08:36:33 -08:00
homepage = https://oss.oetiker.ch/rrdtool/;
description = "High performance logging in Round Robin Databases";
2015-01-22 09:57:29 -08:00
license = licenses.gpl2;
platforms = platforms.linux ++ platforms.darwin;
2015-01-22 09:57:29 -08:00
maintainers = with maintainers; [ pSub ];
};
}