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")))