From 476646fc8346b8963b612acd98b5811e0af9ffd3 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sun, 23 Aug 2026 13:30:28 +0100 Subject: [PATCH] fix(template): establish canonical guix.scm (resolves #406) --- guix.scm | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/guix.scm b/guix.scm index a0913800..8533f721 100644 --- a/guix.scm +++ b/guix.scm @@ -1,17 +1,20 @@ -; SPDX-License-Identifier: MPL-2.0 -;; guix.scm — GNU Guix package definition for standards -;; Usage: guix shell -f guix.scm +;; SPDX-License-Identifier: MPL-2.0 +;; Guix development environment template. +;; Usage: guix shell -D -f guix.scm (use-modules (guix packages) (guix build-system gnu) - (guix licenses)) + (guix licenses) + (gnu packages base) + (gnu packages bash)) (package (name "standards") (version "0.1.0") (source #f) (build-system gnu-build-system) + (inputs (list coreutils bash)) (synopsis "standards") (description "standards — part of the hyperpolymath ecosystem.") (home-page "https://github.com/hyperpolymath/standards") - (license mpl2.0)) + (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))