-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
31 lines (29 loc) · 900 Bytes
/
Copy pathguix.scm
File metadata and controls
31 lines (29 loc) · 900 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
30
31
;; SPDX-License-Identifier: MPL-2.0
;; Copyright (c) 2026 Jonathan D.A. Jewell (hyperpolymath)
;;
;; Guix development environment for ambientops.
;; Usage: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(gnu packages rust)
(gnu packages crates-io)
(gnu packages erlang)
(gnu packages elixir)
(gnu packages node))
(package
(name "ambientops")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(native-inputs
(list rust
rust-cargo
elixir
erlang
deno))
(synopsis "Ambient operations and system management toolkit")
(description
"AmbientOps is a collection of ambient operations tools including
system management, session monitoring, and personal sysadmin
utilities built with Rust, Elixir, zig, and Deno.")
(license #f))