me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-errata-ai-ini.

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

Change-Id: Ic97b0152b10a3b3dc88cf5a617b26427058bf1f5
master
Sharlatan Hellseher 2024-06-24 21:17:00 +01:00
parent 512cd9aa75
commit c8dc5b1e1e
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 37 additions and 0 deletions

View File

@ -1500,6 +1500,43 @@ scanner API made public.")
for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.")
(license license:expat)))
(define-public go-github-com-errata-ai-ini
(package
(name "go-github-com-errata-ai-ini")
(version "1.63.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/errata-ai/ini")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zs9dwxh8mzxm1zfck4ghs7hma1lz5ajh98kmyh888rn3npvrnm5"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/errata-ai/ini"))
(home-page "https://github.com/errata-ai/ini")
(synopsis "INI file read and write functionality in Golang")
(description
"This Package provides a functionality of INI file read and write,
implementing features:
@itemize
@item load from multiple data sources(file, @code{[]byte}, @code{io.Reader}
and @code{io.ReadCloser}) with overwrites
@item read with recursion values
@item read with parent-child sections
@item read with auto-increment key names
@item read with multiple-line values
@item read with tons of helper methods
@item read and convert values to Go types
@item read and WRITE comments of sections and keys
@item manipulate sections, keys and comments with ease
@item keep sections and keys in order as you parse and save
@end itemize")
(license license:asl2.0)))
(define-public go-github-com-errata-ai-regexp2
(package
(inherit go-github-com-dlclark-regexp2)