-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
24 lines (22 loc) · 713 Bytes
/
guix.scm
File metadata and controls
24 lines (22 loc) · 713 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
;; SPDX-License-Identifier: PMPL-1.0-or-later
;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
;;
;; Guix development environment for standards.
;; Usage: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(gnu packages node))
(package
(name "standards")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(native-inputs
(list deno
nickel))
(synopsis "Hyperpolymath standards monorepo")
(description
"Collection of hyperpolymath standards including A2ML, K9, Axel
protocol, Groove protocol, eNSAID configuration, and component
readiness grades, with Deno tooling and Nickel configuration.")
(license #f))