From 544d72189c5c1dc7a24d5dec68e9d377a62e5dc0 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Thu, 16 Jun 2022 17:59:48 +0300 Subject: chore(nixery): use nix-1p from within the depot Since the source of nix-1p is checked in under //nix/nix-1p, we should use it from there if Nixery is being built inside of depot. Change-Id: Iddd54f7b93b398b2f909db6ee105366a9914a2ac Reviewed-on: https://cl.tvl.fyi/c/depot/+/5882 Reviewed-by: sterni Tested-by: BuildkiteCI Autosubmit: tazjin --- nix/nix-1p/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nix') diff --git a/nix/nix-1p/default.nix b/nix/nix-1p/default.nix index cd1af92d83..6cc71b9548 100644 --- a/nix/nix-1p/default.nix +++ b/nix/nix-1p/default.nix @@ -4,8 +4,9 @@ # This file configures TVL CI to mirror the subtree to GitHub. { depot ? { }, pkgs ? import { }, ... }: -(pkgs.runCommandLocal "nix-1p.md" { } '' - cp ${./README.md} $out +(pkgs.runCommandLocal "nix-1p" { } '' + mkdir $out + cp ${./README.md} $out/README.md '').overrideAttrs (_: { meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush { filter = ":/nix/nix-1p"; -- cgit 1.4.1