1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-14 19:10:49 +02:00

gnu: Add go-github-com-go-yaml-yaml.

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

Change-Id: I54c1b9d3b2669edfc7bc3b0548b616a95898b55b
This commit is contained in:
Sharlatan Hellseher 2024-12-24 15:05:01 +00:00
parent 400ae6e898
commit 907e7e908b
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -4427,6 +4427,30 @@ the library more lightweight.")
(package-arguments go-github-com-go-task-slim-sprig)
((#:import-path _) "github.com/go-task/slim-sprig/v3")))))
(define-public go-github-com-go-yaml-yaml
(package
(name "go-github-com-go-yaml-yaml")
(version "0.0.0-20220527083530-f6f7691b1fde")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-yaml/yaml")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "01b0wjb7yzv8wzzz2iim8mjpkwjnykcanrwiq06pkl89lr6gv8hn"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-yaml/yaml"))
(native-inputs (list go-gopkg-in-check-v1))
(propagated-inputs (list go-gopkg-in-yaml-v3))
(home-page "https://github.com/go-yaml/yaml")
(synopsis "YAML support for the Go language")
(description "Package yaml implements YAML support for the Go language.")
(license license:asl2.0)))
(define-public go-github-com-gobwas-glob
(package
(name "go-github-com-gobwas-glob")