From 81ae093614f88fc239e9d2628c01e60a55da7fd2 Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Sun, 23 Aug 2026 13:43:16 +0100 Subject: [PATCH] chore(guix): quality pass - fix stub/invalid names (#139) --- guix.scm | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/guix.scm b/guix.scm index 6e9094f..52ece9c 100644 --- a/guix.scm +++ b/guix.scm @@ -1,18 +1,28 @@ -; SPDX-License-Identifier: MPL-2.0 -;; guix.scm — GNU Guix package definition for cloud-sync-tuner -;; 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) + (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 "cloud-sync-tuner") (version "0.1.0") (source #f) (build-system gnu-build-system) + (inputs (list coreutils bash make openjdk rust cmake zig go node python)) (synopsis "cloud-sync-tuner") (description "cloud-sync-tuner — part of the hyperpolymath ecosystem.") (home-page "https://github.com/hyperpolymath/cloud-sync-tuner") - (license ((@@ (guix licenses) license) "MPL-2.0" - "https://github.com/hyperpolymath/palimpsest-license"))) + (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))