Unverified Commit ce8b7f42 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

collectd: remove ... from inputs

This avoids that overrides accepts anything silently.
parent d64b849b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,10 +11,10 @@
  flex,
  perl,
  nixosTests,
  ...
}@args:
  enabledPlugins ? null,
}:
let
  plugins = callPackage ./plugins.nix args;
  plugins = callPackage ./plugins.nix { inherit enabledPlugins; };
in
stdenv.mkDerivation (finalAttrs: {
  pname = "collectd";
+0 −1
Original line number Diff line number Diff line
@@ -45,7 +45,6 @@
  # Defaults to `null` for all supported plugins (except xen, which is marked as
  # insecure), otherwise a list of plugin names for a custom build
  enabledPlugins ? null,
  ...
}:

let