From 0d4cf119bc1ed44dde3805401605eddf3f9fff56 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Sun, 29 May 2022 13:48:24 +0200 Subject: feat(nix-1p): Export subtree to GitHub We needed a derivation for that, but this can also be used in the Nixery docs building process (which includes nix-1p). Change-Id: If97cf785a33d703af975da3b41de9b69566dfa81 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5789 Tested-by: BuildkiteCI Reviewed-by: sterni --- nix/nix-1p/default.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 nix/nix-1p/default.nix diff --git a/nix/nix-1p/default.nix b/nix/nix-1p/default.nix new file mode 100644 index 0000000000..cd1af92d83 --- /dev/null +++ b/nix/nix-1p/default.nix @@ -0,0 +1,15 @@ +# The canonical source location of nix-1p is //nix/nix-1p in the TVL +# depot: https://code.tvl.fyi/about/nix/nix-1p +# +# This file configures TVL CI to mirror the subtree to GitHub. +{ depot ? { }, pkgs ? import { }, ... }: + +(pkgs.runCommandLocal "nix-1p.md" { } '' + cp ${./README.md} $out +'').overrideAttrs (_: { + meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush { + filter = ":/nix/nix-1p"; + remote = "git@github.com:tazjin/nix-1p.git"; + ref = "refs/heads/master"; + }; +}) -- cgit 1.4.1