chore(3p/overlays): bump Nix fork
This includes a small fix relating to string configureFlags being deprecated, silencing a warning during eval. Change-Id: I9528a5554dbc56d4d3f2a60edcb7de338ca6adc0 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5911 Tested-by: BuildkiteCI Autosubmit: sterni <sternenseemann@systemli.org> Reviewed-by: tazjin <tazjin@tvl.su>
This commit is contained in:
parent
46f908c3c1
commit
255750471b
1 changed files with 11 additions and 7 deletions
18
third_party/overlays/tvl.nix
vendored
18
third_party/overlays/tvl.nix
vendored
|
@ -6,14 +6,18 @@ self: super:
|
||||||
let
|
let
|
||||||
# Rollback Nix to a stable version (2.3) with backports for
|
# Rollback Nix to a stable version (2.3) with backports for
|
||||||
# build-user problems applied.
|
# build-user problems applied.
|
||||||
nixSrc = self.fetchFromGitHub
|
nixSrc =
|
||||||
{
|
let
|
||||||
owner = "tvlfyi";
|
|
||||||
repo = "nix";
|
|
||||||
# branch 2.3-backport-await-users
|
# branch 2.3-backport-await-users
|
||||||
rev = "880a62b08443a6baa55dab027b69bb8b1551a588";
|
rev = "4510dbc8a6802902cbab6444134659548fffb9b0";
|
||||||
hash = "sha256:0jnwrzxh04d0pyhx4n8fg4w1w6ak48byl5k2i8j7fk4h9vd9649k";
|
in
|
||||||
} // { revCount = 0; shortRev = "880a62b0"; };
|
self.fetchFromGitHub
|
||||||
|
{
|
||||||
|
owner = "tvlfyi";
|
||||||
|
repo = "nix";
|
||||||
|
inherit rev;
|
||||||
|
hash = "sha256:0vg2xzwc8q1sw20b26qbyd4flnws8668yhi1cg2h6z3jb3wamhr5";
|
||||||
|
} // { revCount = 0; shortRev = builtins.substring 0 7 rev; };
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nix = (import "${nixSrc}/release.nix" {
|
nix = (import "${nixSrc}/release.nix" {
|
||||||
|
|
Loading…
Reference in a new issue