temporary: nix: Work around for broken stat size #1645

This commit is contained in:
Tyson Whitehead
2018-01-23 23:47:04 -05:00
parent 820719fb02
commit 06801cb4f0
2 changed files with 38 additions and 0 deletions

View File

@@ -7,4 +7,9 @@
self: super: pkgs: with pkgs; {
# https://github.com/NixOS/nix/pull/1645
nixStable = super.nixStable.overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/stat.patch ]; } );
nix = super.nix.overrideAttrs
( attrs: { patches = attrs.patches or [] ++ [ ./nix/stat.patch ]; } );
}