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-lann-builder.

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

Change-Id: I37d916514b7c8dcbc0ac08fb7bf0ffa76320515a
This commit is contained in:
Sharlatan Hellseher 2025-01-06 20:24:44 +00:00
parent 4beb4b7320
commit c007debac8
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -8103,6 +8103,33 @@ structure. It can also produce a much more verbose, one-item-per-line
representation suitable for computing diffs.")
(license license:asl2.0)))
(define-public go-github-com-lann-builder
(package
(name "go-github-com-lann-builder")
(version "0.0.0-20180802200727-47ae307949d0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/lann/builder")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "1kg9jy1rciznj627hafpq2mi7hr5d3ssgqcpwrm3bnlk9sqnydil"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/lann/builder"))
(propagated-inputs
(list go-github-com-lann-ps))
(home-page "https://github.com/lann/builder")
(synopsis "Fluent immutable builders for Golang")
(description
"Package builder provides a method for writing fluent immutable DSL
builders. It uses immutable persistent data structures so that each step in
the method chain can be reused.")
(license license:expat)))
(define-public go-github-com-lann-ps
(package
(name "go-github-com-lann-ps")