-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
18 lines (16 loc) · 646 Bytes
/
guix.scm
File metadata and controls
18 lines (16 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
; SPDX-License-Identifier: PMPL-1.0-or-later
;; guix.scm — GNU Guix package definition for conative-gating
;; Usage: guix shell -f guix.scm
(use-modules (guix packages)
(guix build-system gnu)
(guix licenses))
(package
(name "conative-gating")
(version "0.1.0")
(source #f)
(build-system gnu-build-system)
(synopsis "conative-gating")
(description "conative-gating — part of the hyperpolymath ecosystem.")
(home-page "https://github.com/hyperpolymath/conative-gating")
(license ((@@ (guix licenses) license) "PMPL-1.0-or-later"
"https://github.com/hyperpolymath/palimpsest-license")))