about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-05-29T11·48+0200
committertazjin <tazjin@tvl.su>2022-05-29T12·30+0000
commit0d4cf119bc1ed44dde3805401605eddf3f9fff56 (patch)
treeda8b134af728b6e33680705d55fe57187d709e96
parent9f6215f6e03cfeecf720487b5d549e51b68f2029 (diff)
feat(nix-1p): Export subtree to GitHub r/4189
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 <sternenseemann@systemli.org>
-rw-r--r--nix/nix-1p/default.nix15
1 files changed, 15 insertions, 0 deletions
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 <nixpkgs> { }, ... }:
+
+(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";
+  };
+})