dotfiles/fixups.nix

10 lines
253 B
Nix
Raw Normal View History

2021-11-15 13:34:51 +01:00
(pkgs: super: {
# https://github.com/NixOS/nixpkgs/pull/145738
tree = super.tree.overrideAttrs (o: {
preConfigure = o.preConfigure + ''
makeFlags+=("CC=$CC")
'';
makeFlags = pkgs.lib.filter (x: x != "CC=$CC") o.makeFlags;
});
})