35 lines
913 B
Scheme
35 lines
913 B
Scheme
(define-module
|
|
(xmake))
|
|
|
|
(use-modules
|
|
(guix packages)
|
|
(gnu packages version-control)
|
|
(guix download)
|
|
(guix git-download)
|
|
(guix build-system gnu)
|
|
(guix licenses))
|
|
|
|
(define-public xmake
|
|
|
|
(package
|
|
(name "xmake")
|
|
(version "0.2")
|
|
(source
|
|
(origin
|
|
(method git-fetch)
|
|
(uri
|
|
( git-reference
|
|
(url "https://github.com/xmake-io/xmake/")
|
|
(commit "8545a9301139aa8a778c4b61a1a3b6eaf40385e5")))
|
|
(sha256
|
|
(base32
|
|
"1w38dbcv9frhgvakggdswx051pn5mmg278pp8fi9snxzlv77f1lc"))))
|
|
(build-system gnu-build-system)
|
|
(synopsis "Hello, GNU world: An example GNU package")
|
|
(description
|
|
"GNU Hello prints the message \"Hello, world!\" and then exits. It
|
|
serves as an example of standard GNU coding practices. As such, it supports
|
|
command-line arguments, multiple languages, and so on.")
|
|
(home-page "https://www.gnu.org/software/hello/")
|
|
(license gpl3+)))
|