-
Notifications
You must be signed in to change notification settings - Fork 0
/
guix.scm
31 lines (26 loc) · 920 Bytes
/
guix.scm
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
;; Use this to build a Guix package from the current git checkout.
;; Note that uncommitted changes will not be included!
;; Use like this:
;; guix build -f guix.scm
;; or:
; guix shell -C -f guix.scm
;; or:
;; guix time-machine -C channels.scm -- build -f guix.scm
(use-modules (guix build-system pyproject)
(guix git)
(guix gexp)
(guix packages)
(guix licenses)
(gnu packages base))
;; (include "manifest.scm")
(package
(name "hop3")
(version "0.1.0")
(source (git-checkout (url (dirname (current-filename)))))
(build-system pyproject-build-system)
;; (propagated-inputs %packages)
;; (native-inputs %dev-packages)
(home-page "https://github.com/abilian/hop3")
(synopsis "Simple PaaS - Deploy and manage web applications on a single server")
(description "Simple PaaS - Deploy and manage web applications on a single server")
(license agpl3))