-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchannels.scm
More file actions
39 lines (35 loc) · 1.09 KB
/
Copy pathchannels.scm
File metadata and controls
39 lines (35 loc) · 1.09 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
38
39
;;
;; Guix channels configuration for Trigger
;;
;; This file specifies the Guix channels used for building the Trigger application.
;; It enables access to packages not in the default Guix repository.
;;
;; Author: hyperpolymath
;;
(cons*
;; Official Guix channel
(channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")
(branch "master")
(commit "a0943964320853c95325754320836064c5133507")) ; Update to latest stable commit
;; nonguix channel - provides additional packages including:
;; - zig (Zig compiler)
;; - idris2 (Idris2 compiler)
;; - Various development tools
(channel
(name 'nonguix)
(url "https://gitlab.com/nonguix/nonguix")
(branch "master")
(commit "587613d113c427375171f6e46f3e7b3d4d17245a"))
;; Additional channel for Ada/SPARK tools if needed
;; (channel
;; (name 'ada-guix)
;; (url "https://gitlab.com/ada-guix/ada-guix")
;; (branch "master"))
;; Local channel for custom packages (optional)
;; (channel
;; (name 'trigger-custom)
;; (path "/path/to/local/channel")
;; (branch "main"))
)