Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 16 additions & 17 deletions guix.scm
Original file line number Diff line number Diff line change
@@ -1,29 +1,28 @@
;; SPDX-License-Identifier: MPL-2.0
;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
;;
;; Guix development environment for panll.
;; Guix development environment.
;; Usage: guix shell -D -f guix.scm

(use-modules (guix packages)
(guix build-system gnu)
(gnu packages node)
(guix licenses)
(gnu packages base)
(gnu packages bash)
(gnu packages base)
(gnu packages java)
(gnu packages rust)
(gnu packages crates-io)
(gnu packages zig))
(gnu packages cmake)
(gnu packages zig)
(gnu packages golang)
(gnu packages node)
(gnu packages python))

(package
(name "panll")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(native-inputs
(list deno
rust
rust-cargo
zig))
(synopsis "PanLL eNSAID panel layout system")
(description
"PanLL is a neurosymbolic panel layout system providing type-safe
workspace management with constraint-based panel composition,
Deno runtime, Rust core, and Zig FFI.")
(license #f))
(inputs (list coreutils bash make openjdk rust cmake zig go node python))
(synopsis "panll")
(description "panll — part of the hyperpolymath ecosystem.")
(home-page "https://github.com/hyperpolymath/panll")
(license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))
Loading