diff --git a/guix.scm b/guix.scm index d7ad829..a661074 100644 --- a/guix.scm +++ b/guix.scm @@ -1,18 +1,28 @@ -; SPDX-License-Identifier: MPL-2.0 -;; guix.scm — GNU Guix package definition for Hyperpolymath.jl -;; 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 "Hyperpolymath.jl") + (name "hyperpolymath.jl") (version "0.1.0") (source #f) (build-system gnu-build-system) - (synopsis "Hyperpolymath.jl") - (description "Hyperpolymath.jl — part of the hyperpolymath ecosystem.") - (home-page "https://github.com/hyperpolymath/Hyperpolymath.jl") - (license ((@@ (guix licenses) license) "MPL-2.0" - "https://github.com/hyperpolymath/palimpsest-license"))) + (inputs (list coreutils bash make openjdk rust cmake zig go node python)) + (synopsis "hyperpolymath.jl") + (description "hyperpolymath.jl — part of the hyperpolymath ecosystem.") + (home-page "https://github.com/hyperpolymath/hyperpolymath.jl") + (license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))