elfutils is reqd by iproute2 (for bpf?), build sans kitchen sink
This commit is contained in:
parent
79a3a45061
commit
70ca7fac17
15
overlay.nix
15
overlay.nix
@ -113,6 +113,21 @@ extraPkgs // {
|
|||||||
'';
|
'';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
elfutils =
|
||||||
|
let native = (with final.stdenv; (buildPlatform == hostPlatform));
|
||||||
|
in if native
|
||||||
|
then prev.elfutils
|
||||||
|
else
|
||||||
|
let
|
||||||
|
e = prev.elfutils.overrideAttrs(o: {
|
||||||
|
configureFlags = o.configureFlags ++[
|
||||||
|
"ac_cv_has_stdatomic=no"
|
||||||
|
];
|
||||||
|
});
|
||||||
|
in e.override {
|
||||||
|
enableDebuginfod = false;
|
||||||
|
};
|
||||||
|
|
||||||
hostapd =
|
hostapd =
|
||||||
let
|
let
|
||||||
config = [
|
config = [
|
||||||
|
Loading…
Reference in New Issue
Block a user