2022-07-22 22:35:28 +02:00
|
|
|
(use-modules (guix build-system gnu)
|
|
|
|
(guix gexp)
|
|
|
|
(guix git-download)
|
|
|
|
(guix licenses)
|
|
|
|
(guix packages))
|
|
|
|
|
|
|
|
(let
|
|
|
|
((%source-dir (dirname (current-filename)))
|
2022-08-09 20:09:02 +02:00
|
|
|
(SJW (load "/home/Bureau/sjw/guix.scm"))
|
2022-07-26 19:25:56 +02:00
|
|
|
(UnitJS (load "/home/Bureau/unitJS/guix.scm"))
|
|
|
|
(WTK (load "/home/Bureau/WTK/guix.scm")))
|
2022-07-22 22:35:28 +02:00
|
|
|
(package
|
2022-07-28 17:39:51 +02:00
|
|
|
(name "constellations")
|
2022-07-22 22:35:28 +02:00
|
|
|
(version "devel")
|
|
|
|
(source
|
|
|
|
(local-file %source-dir
|
|
|
|
#:recursive? #t
|
|
|
|
#:select? (git-predicate %source-dir)))
|
|
|
|
(build-system gnu-build-system)
|
2022-07-23 18:32:27 +02:00
|
|
|
(native-inputs
|
|
|
|
(list
|
|
|
|
SJW
|
2022-07-26 19:25:56 +02:00
|
|
|
UnitJS
|
|
|
|
WTK))
|
2022-07-22 22:35:28 +02:00
|
|
|
(arguments
|
2022-07-23 18:32:27 +02:00
|
|
|
`(#:make-flags
|
|
|
|
,#~(list (string-append "PREFIX=" #$output))
|
|
|
|
#:phases
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
(delete 'configure)
|
|
|
|
(delete 'check))))
|
2022-07-28 17:39:51 +02:00
|
|
|
(home-page "https://git.marvid.fr/Tissevert/Constellations")
|
2022-07-22 22:35:28 +02:00
|
|
|
(synopsis "A game webapp")
|
|
|
|
(description
|
|
|
|
"someday")
|
|
|
|
(license gpl3+)))
|