dotfiles/fixups.nix

13 lines
338 B
Nix
Raw Normal View History

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