diff --git a/overlay.nix b/overlay.nix index 959240a..f92fb76 100644 --- a/overlay.nix +++ b/overlay.nix @@ -16,6 +16,14 @@ extraPkgs // { (if o ? patches then o.patches else []) ++ (if patch_needed then [ patch ] else []); }); + + nftables = prev.nftables.overrideAttrs(o: { + configureFlags = [ + "--disable-debug" + "--disable-python" + "--with-mini-gmp" + "--without-cli" + ]; }); dnsmasq = @@ -29,6 +37,8 @@ extraPkgs // { nettle = null; }; + hostapd = prev.hostapd.override { sqlite = null; }; + dropbear = prev.dropbear.overrideAttrs (o: { postPatch = '' (echo '#define DSS_PRIV_FILENAME "/run/dropbear/dropbear_dss_host_key"'