-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
37 lines (35 loc) · 1.01 KB
/
Copy pathguix.scm
File metadata and controls
37 lines (35 loc) · 1.01 KB
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
30
31
32
33
34
35
36
37
;; SPDX-License-Identifier: MPL-2.0
;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
;;
;; Guix development environment for hypatia.
;; Usage: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(gnu packages erlang)
(gnu packages elixir)
(gnu packages rust)
(gnu packages crates-io)
(gnu packages idris)
(gnu packages zig)
(gnu packages pkg-config)
(gnu packages tls))
(package
(name "hypatia")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(native-inputs
(list elixir
erlang
rust
rust-cargo
idris2
zig
pkg-config
openssl))
(synopsis "Neurosymbolic CI/CD intelligence platform")
(description
"Hypatia is a neurosymbolic CI/CD intelligence platform providing
security scanning, code analysis, and automated quality enforcement
across the hyperpolymath ecosystem.")
(license #f))