feat: remove elfutils from iproute2
Some checks failed
Some checks failed
Shaves a lot of the compile time. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
This commit is contained in:
parent
4dabd970f0
commit
1598d59ca7
1 changed files with 4 additions and 1 deletions
|
@ -201,7 +201,8 @@ extraPkgs // {
|
||||||
graphviz = null;
|
graphviz = null;
|
||||||
};
|
};
|
||||||
|
|
||||||
iproute2 = prev.iproute2.overrideAttrs (old: {
|
iproute2 =
|
||||||
|
let i = prev.iproute2.overrideAttrs (old: {
|
||||||
postInstall = ''
|
postInstall = ''
|
||||||
${(old.postInstall or "")}
|
${(old.postInstall or "")}
|
||||||
non_necessary_binaries=("tc" "rdma" "dcb" "tipc" "vdpa")
|
non_necessary_binaries=("tc" "rdma" "dcb" "tipc" "vdpa")
|
||||||
|
@ -211,6 +212,8 @@ extraPkgs // {
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
# Don't bring ebpf stuff to the table.
|
||||||
|
in i.override { elfutils = null; };
|
||||||
|
|
||||||
wpa_supplicant = prev.wpa_supplicant.override {
|
wpa_supplicant = prev.wpa_supplicant.override {
|
||||||
dbusSupport = false;
|
dbusSupport = false;
|
||||||
|
|
Loading…
Reference in a new issue