16 lines
531 B
Nix
16 lines
531 B
Nix
# Temporary stuff (e.g., upstream bug fixes that haven't landed)
|
|
#
|
|
# self - next package set (after our additions)
|
|
# super - prior package set (before our additions)
|
|
# pkgs - final package set (after everyone's additions)
|
|
#
|
|
|
|
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 ]; } );
|
|
}
|