From 2d517e649f483c647d59673628c2db271435ae9d Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sat, 19 Sep 2026 09:11:26 +0000 Subject: [PATCH] refactor(root): move root artefacts to their canonical locations Applies the estate root-shape rollout: files that are not root-level by necessity move to where their tooling and the estate canon expect them, and every reference to them is updated in the same change. * README.adoc * RSR_OUTLINE.adoc * build/guix.scm (from guix.scm) -> build/guix.scm Verified with `git apply --check` against current main before committing; no behaviour change intended, the Justfile entry points keep working. --- README.adoc | 2 +- RSR_OUTLINE.adoc | 2 +- guix.scm | 28 ---------------------------- 3 files changed, 2 insertions(+), 30 deletions(-) delete mode 100644 guix.scm diff --git a/README.adoc b/README.adoc index 0dbb89c..e3403bc 100644 --- a/README.adoc +++ b/README.adoc @@ -131,7 +131,7 @@ https://codeberg.org/hyperpolymath/defiant —- == Guix (preferred) -guix shell -f guix.scm +guix shell -f build/guix.scm == Guix (fallback) diff --git a/RSR_OUTLINE.adoc b/RSR_OUTLINE.adoc index 63243fd..2215481 100644 --- a/RSR_OUTLINE.adoc +++ b/RSR_OUTLINE.adoc @@ -35,7 +35,7 @@ git init sed -i 's/RSR-template-repo/my-project/g' Justfile guix.scm README.adoc # Enter development environment -guix shell -D -f guix.scm +guix shell -D -f build/guix.scm # Validate compliance just validate-rsr diff --git a/guix.scm b/guix.scm deleted file mode 100644 index 6069318..0000000 --- a/guix.scm +++ /dev/null @@ -1,28 +0,0 @@ -;; SPDX-License-Identifier: MPL-2.0 -;; Guix development environment. -;; Usage: guix shell -D -f guix.scm - -(use-modules (guix packages) - (guix build-system gnu) - (guix licenses) - (gnu packages base) - (gnu packages bash) - (gnu packages base) - (gnu packages java) - (gnu packages rust) - (gnu packages cmake) - (gnu packages zig) - (gnu packages golang) - (gnu packages node) - (gnu packages python)) - -(package - (name "defiant") - (version "0.1.0") - (source #f) - (build-system gnu-build-system) - (inputs (list coreutils bash make openjdk rust cmake zig go node python)) - (synopsis "defiant") - (description "defiant — part of the hyperpolymath ecosystem.") - (home-page "https://github.com/hyperpolymath/defiant") - (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))