nixpkgs/pkgs/tools/system/collectd/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1.7 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, fetchpatch, darwin, callPackage
, autoreconfHook
, pkg-config
, libtool
2021-12-22 12:00:00 +00:00
, nixosTests
, ...
}@args:
let
plugins = callPackage ./plugins.nix args;
in
2013-08-30 09:58:02 +00:00
stdenv.mkDerivation rec {
2020-09-07 16:12:19 +00:00
version = "5.12.0";
pname = "collectd";
2013-08-30 09:58:02 +00:00
src = fetchurl {
url = "https://collectd.org/files/${pname}-${version}.tar.bz2";
2020-09-07 16:12:19 +00:00
sha256 = "1mh97afgq6qgmpvpr84zngh58m0sl1b4wimqgvvk376188q09bjv";
2013-08-30 09:58:02 +00:00
};
patches = [
# fix -t never printing syntax errors
# should be included in next release
(fetchpatch {
url = "https://github.com/collectd/collectd/commit/3f575419e7ccb37a3b10ecc82adb2e83ff2826e1.patch";
sha256 = "0jwjdlfl0dp7mlbwygp6h0rsbaqfbgfm5z07lr5l26z6hhng2h2y";
})
];
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [
libtool
2021-01-15 09:19:50 +00:00
] ++ lib.optionals stdenv.isDarwin [
darwin.apple_sdk.frameworks.ApplicationServices
] ++ plugins.buildInputs;
configureFlags = [
"--localstatedir=/var"
"--disable-werror"
] ++ plugins.configureFlags
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [ "--with-fp-layout=nothing" ];
# do not create directories in /var during installPhase
postConfigure = ''
substituteInPlace Makefile --replace '$(mkinstalldirs) $(DESTDIR)$(localstatedir)/' '#'
'';
postInstall = ''
if [ -d $out/share/collectd/java ]; then
mv $out/share/collectd/java $out/share/
fi
'';
enableParallelBuilding = true;
2021-12-22 12:00:00 +00:00
passthru.tests = {
inherit (nixosTests) collectd;
};
meta = with lib; {
description = "Daemon which collects system performance statistics periodically";
2020-03-10 14:58:43 +00:00
homepage = "https://collectd.org";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ bjornfor ];
2013-08-30 09:58:02 +00:00
};
}