diff options
author | talyz <kim.lindberger@gmail.com> | 2022-09-19T10·02+0200 |
---|---|---|
committer | talyz <kim.lindberger@gmail.com> | 2022-09-19T11·28+0000 |
commit | 5b165e73186f01a6dec11a804ab6921673806d82 (patch) | |
tree | 296c2e380b312db5bc6a9cae9e18bc15005f1445 /tools | |
parent | 02b6b6c5644022a7e0aa80b71fc9a9586aca1ef3 (diff) |
fix(nixery): Set correct depot ref when fetching nix-1p r/4926
Change-Id: Iffa49a4e8fd38d0762ed1f60bf72b9a050594a3c Reviewed-on: https://cl.tvl.fyi/c/depot/+/6697 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tools')
-rw-r--r-- | tools/nixery/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/nixery/default.nix b/tools/nixery/default.nix index 74cb588a395a..657f11039569 100644 --- a/tools/nixery/default.nix +++ b/tools/nixery/default.nix @@ -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 |