gnu: Add go-github-com-burntsushi-graphics-go.

* gnu/packages/golang-xyz.scm (go-github-com-burntsushi-graphics-go): New variable.

Change-Id: Iadbee81a5ca2c9b65d84e6cdffc69abff4b114e9
This commit is contained in:
Sharlatan Hellseher 2024-12-15 16:04:14 +00:00
parent 58c2f5e6cb
commit dbcec82ce8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1585,6 +1585,32 @@ indicator to any terminal application.")
strings into words like a POSIX or Windows shell would.")
(license license:expat)))
(define-public go-github-com-burntsushi-graphics-go
(package
(name "go-github-com-burntsushi-graphics-go")
(version "0.0.0-20160129215708-b43f31a4a966")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/BurntSushi/graphics-go")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1084wkrj5l6j48s9lkh28h2zgmw8kp63ra1yw1nfpkf0f6hil3hn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/BurntSushi/graphics-go"
#:phases
#~(modify-phases %standard-phases
(delete 'build)))) ; no go files in project's root
(home-page "https://github.com/BurntSushi/graphics-go")
(synopsis "Graphics library for the Golang")
(description
"This package provides a library to works with graphics.")
(license license:bsd-3)))
(define-public go-github-com-burntsushi-toml
(package
(name "go-github-com-burntsushi-toml")