From 7ac5fa6e032755ce6cb56f6c5ebb4d9ca459bec2 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sun, 23 Aug 2026 13:41:45 +0100 Subject: [PATCH] chore(guix): quality pass - fix stub/invalid names (#139) --- guix.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/guix.scm b/guix.scm index a3f03b2b..a87f90ab 100644 --- a/guix.scm +++ b/guix.scm @@ -1,17 +1,21 @@ -; SPDX-License-Identifier: MPL-2.0 -;; guix.scm — GNU Guix package definition for nextgen-databases -;; Usage: guix shell -f guix.scm +;; 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)) + (guix licenses) + (gnu packages base) + (gnu packages bash) +) (package (name "nextgen-databases") (version "0.1.0") (source #f) (build-system gnu-build-system) + (inputs (list coreutils bash )) (synopsis "nextgen-databases") (description "nextgen-databases — part of the hyperpolymath ecosystem.") (home-page "https://github.com/hyperpolymath/nextgen-databases") - (license mpl2.0)) + (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))