-
-
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) · 1015 Bytes
/
Copy pathguix.scm
File metadata and controls
29 lines (27 loc) · 1015 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: MPL-2.0
;; Guix development environment.
;; Usage: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(guix licenses)
(gnu packages base)
(gnu packages bash)
(gnu packages agda)
(gnu packages base)
(gnu packages java)
(gnu packages rust)
(gnu packages cmake)
(gnu packages zig)
(gnu packages golang)
(gnu packages node)
(gnu packages python))
(package
(name "echo-types")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(inputs (list coreutils bash agda make openjdk rust cmake zig go node python))
(synopsis "echo-types")
(description "echo-types — part of the hyperpolymath ecosystem.")
(home-page "https://github.com/hyperpolymath/echo-types")
(license ((@@ (guix licenses) license) "MPL-2.0" "https://github.com/hyperpolymath/palimpsest-license")))