mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 23:06:59 +01:00
gnu: Add go-modernc-org-strutil.
* gnu/packages/golang-xyz.scm (go-modernc-org-strutil): New variable. Change-Id: If66b56b6603263907bc5b95ddc01775777b4cd57
This commit is contained in:
parent
e608f81183
commit
aecd38b9ae
1 changed files with 28 additions and 0 deletions
|
@ -10870,6 +10870,34 @@ (define-public go-modernc-org-sortutil
|
|||
@code{sort} package.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-modernc-org-strutil
|
||||
(package
|
||||
(name "go-modernc-org-strutil")
|
||||
(version "1.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://gitlab.com/cznic/strutil")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0rk76c1n189hzg3kfab8pfvssa1h9v0vxk5jxy8pk32rqic0hdim"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "modernc.org/strutil"
|
||||
;; Cannot determine import path using GOPATH.
|
||||
#:test-flags #~(list "-skip" "TestImportPath")))
|
||||
(native-inputs
|
||||
(list go-modernc-org-mathutil))
|
||||
(home-page "https://gitlab.com/cznic/strutil")
|
||||
(synopsis "Strings utility library for Golang")
|
||||
(description
|
||||
"Package strutil collects utils supplemental to the standard
|
||||
@code{strings} package.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-mvdan-cc-editorconfig
|
||||
(package
|
||||
(name "go-mvdan-cc-editorconfig")
|
||||
|
|
Loading…
Reference in a new issue