-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathguix.scm
More file actions
25 lines (22 loc) · 778 Bytes
/
guix.scm
File metadata and controls
25 lines (22 loc) · 778 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
;; UbiCity - Guix Package Definition
;; Run: guix shell -D -f guix.scm
(use-modules (guix packages)
(guix gexp)
(guix git-download)
(guix build-system node)
((guix licenses) #:prefix license:)
(gnu packages base))
(define-public ubicity
(package
(name "UbiCity")
(version "0.1.0")
(source (local-file "." "UbiCity-checkout"
#:recursive? #t
#:select? (git-predicate ".")))
(build-system node-build-system)
(synopsis "ReScript application")
(description "ReScript application - part of the RSR ecosystem.")
(home-page "https://github.com/hyperpolymath/UbiCity")
(license license:mpl2.0)))
;; Return package for guix shell
ubicity