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

31 lines
957 B
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ fetchurl, lib, stdenv, gettext, perl, pkg-config, libxml2, pango, cairo, groff
2017-04-08 03:55:49 +00:00
, tcl-8_5, darwin }:
perl.pkgs.toPerlModule (stdenv.mkDerivation rec {
name = "rrdtool-1.7.2";
2017-01-22 00:38:29 +00:00
src = fetchurl {
url = "https://oss.oetiker.ch/rrdtool/pub/${name}.tar.gz";
sha256 = "1nsqra0g2nja19akmf9x5y9hhgc35ml3w9dcdz2ayz7zgvmzm6d1";
};
2017-01-22 00:38:29 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ pkg-config ];
2017-02-05 18:05:49 +00:00
buildInputs = [ gettext perl libxml2 pango cairo groff ]
2021-01-15 09:19:50 +00:00
++ lib.optionals stdenv.isDarwin [ tcl-8_5 darwin.apple_sdk.frameworks.ApplicationServices ];
2017-01-22 00:38:29 +00:00
2014-08-31 14:53:29 +00:00
postInstall = ''
# for munin and rrdtool support
mkdir -p $out/${perl.libPrefix}
mv $out/lib/perl/5* $out/${perl.libPrefix}
2014-08-31 14:53:29 +00:00
'';
meta = with lib; {
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 ];
};
})