mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add harmonist-tk.
* gnu/packages/games.scm (harmonist-tk): New variable.
This commit is contained in:
parent
a5c86aa0fb
commit
453365bcf7
1 changed files with 20 additions and 0 deletions
|
@ -7254,6 +7254,26 @@ (define-public harmonist
|
|||
on items and player adaptability for character progression.")
|
||||
(license license:isc)))
|
||||
|
||||
(define-public harmonist-tk
|
||||
(package
|
||||
(inherit harmonist)
|
||||
(name "harmonist-tk")
|
||||
(arguments
|
||||
(append
|
||||
(package-arguments harmonist)
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'build
|
||||
(lambda _
|
||||
(invoke "go" "install" "-v" "-x" "--tags" "tk"
|
||||
"git.tuxfamily.org/harmonist/harmonist")))
|
||||
(replace 'check
|
||||
(lambda _
|
||||
(invoke "go" "test" "--tags" "tk"
|
||||
"git.tuxfamily.org/harmonist/harmonist")))))))
|
||||
(inputs
|
||||
`(("go-github.com-nsf-gothic" ,go-github.com-nsf-gothic)))))
|
||||
|
||||
(define-public drascula
|
||||
(package
|
||||
(name "drascula")
|
||||
|
|
Loading…
Reference in a new issue