fix(nixery): Set correct depot ref when fetching nix-1p
Change-Id: Iffa49a4e8fd38d0762ed1f60bf72b9a050594a3c Reviewed-on: https://cl.tvl.fyi/c/depot/+/6697 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
This commit is contained in:
parent
02b6b6c564
commit
5b165e7318
1 changed files with 4 additions and 1 deletions
|
@ -27,7 +27,10 @@ let
|
|||
|
||||
# If Nixery is built outside of depot, it needs to dynamically fetch
|
||||
# the current nix-1p.
|
||||
nix-1p-git = builtins.fetchGit "https://code.tvl.fyi/depot.git:/nix/nix-1p.git";
|
||||
nix-1p-git = builtins.fetchGit {
|
||||
url = "https://code.tvl.fyi/depot.git:/nix/nix-1p.git";
|
||||
ref = "canon";
|
||||
};
|
||||
in
|
||||
depot.nix.readTree.drvTargets rec {
|
||||
# Implementation of the Nix image building logic
|
||||
|
|
Loading…
Reference in a new issue