4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
52 lines
1.3 KiB
Nix
52 lines
1.3 KiB
Nix
{ lib, stdenv, fetchurl, fetchpatch, darwin, callPackage
|
|
, autoreconfHook
|
|
, pkgconfig
|
|
, libtool
|
|
, ...
|
|
}@args:
|
|
let
|
|
plugins = callPackage ./plugins.nix args;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
version = "5.12.0";
|
|
pname = "collectd";
|
|
|
|
src = fetchurl {
|
|
url = "https://collectd.org/files/${pname}-${version}.tar.bz2";
|
|
sha256 = "1mh97afgq6qgmpvpr84zngh58m0sl1b4wimqgvvk376188q09bjv";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig autoreconfHook ];
|
|
buildInputs = [
|
|
libtool
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
darwin.apple_sdk.frameworks.ApplicationServices
|
|
] ++ plugins.buildInputs;
|
|
|
|
configureFlags = [
|
|
"--localstatedir=/var"
|
|
"--disable-werror"
|
|
] ++ plugins.configureFlags;
|
|
|
|
# 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;
|
|
|
|
meta = with lib; {
|
|
description = "Daemon which collects system performance statistics periodically";
|
|
homepage = "https://collectd.org";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ bjornfor fpletz ];
|
|
};
|
|
}
|