nixos-config/config/workarounds/default.nix

13 lines
407 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ ... }: {
nixpkgs.overlays = [
(self: prev: {
git = prev.git.overrideAttrs (oldAttrs: {
checkPhase = "true";
installCheckPhase = "true";
}); # Gits check phase is broken on zfs with normalization enabled
bat = prev.bat.overrideAttrs (oldAttrs: {
checkPhase = "true";
}); # Bats check phase is broken with mandatory utf-8 file names
})
];
}