collectd-master: add new nativeBuildInputs

This commit is contained in:
Astro 2019-12-13 19:41:35 +01:00
parent fd2f4bf216
commit cb7727ee38
1 changed files with 6 additions and 1 deletions

View File

@ -1,10 +1,15 @@
let
overlay = self: super: {
collectd = super.collectd.overrideAttrs (_: rec {
collectd = super.collectd.overrideAttrs (oldAttrs: rec {
name = "collectd-${version}";
src = <collectd>;
version = "unstable";
patches = [];
nativeBuildInputs = oldAttrs.nativeBuildInputs ++ (
with super; [
bison2 flex perl
]
);
});
};
in