-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
29 lines (27 loc) · 816 Bytes
/
guix.scm
File metadata and controls
29 lines (27 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
;; SPDX-License-Identifier: PMPL-1.0-or-later
;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
;;
;; Guix development environment for panll.
;; Usage: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(gnu packages node)
(gnu packages rust)
(gnu packages crates-io)
(gnu packages zig))
(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))