flakes/overlays/nix.nix

14 lines
451 B
Nix
Raw Normal View History

2021-12-18 19:44:10 +07:00
# TODO: remove after upstream fixes https://github.com/NixOS/nix/issues/5728
self: super: {
nixUnstable = super.nixUnstable.override rec {
2021-12-18 19:44:10 +07:00
version = "2.5${suffix}";
suffix = "pre20211007_${super.lib.substring 0 7 src.rev}";
src = super.fetchFromGitHub {
2021-12-18 19:44:10 +07:00
owner = "NixOS";
repo = "nix";
rev = "844dd901a7debe8b03ec93a7f717b6c4038dc572";
sha256 = "sha256-fe1B4lXkS6/UfpO0rJHwLC06zhOPrdSh4s9PmQ1JgPo=";
};
};
2021-12-18 19:44:10 +07:00
}