diff options
author | Sharlatan Hellseher <[email protected]> | 2025-01-02 20:41:22 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:47:36 +0000 |
commit | 81e18fe086b74a95d05889e25b373895b611c16a (patch) | |
tree | 4156800e4d05ee5658c94197c940bd2df5e88041 | |
parent | 5d01c235487137bef3f353bebd2ee43a112aabba (diff) |
gnu: go-github-com-saracen-walker: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-saracen-walker): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: Ib37b06d4712af1ec3937bb14f53f2adc46af490c
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 | ||||
-rw-r--r-- | gnu/packages/golang.scm | 24 |
2 files changed, 26 insertions, 24 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 729badf6da..22d587b29b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -10958,6 +10958,32 @@ logging.") symbols in the style of Sublime Text, VSCode, @code{IntelliJ} IDEA et al.") (license license:expat))) +(define-public go-github-com-saracen-walker + (package + (name "go-github-com-saracen-walker") + (version "0.1.4") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/saracen/walker") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "17i2zrbcp0zgwfgap555pk358wpqfa8qj8pmgwhjkzwd77nyl77g")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/saracen/walker")) + (inputs + (list go-golang-org-x-sync)) + (home-page "https://github.com/saracen/walker") + (synopsis "Faster, parallel version of Go's filepath.Walk") + (description + "The @code{walker} function is a faster, parallel version, of +@code{filepath.Walk}") + (license license:expat))) + (define-public go-github-com-satori-go-uuid (package (name "go-github-com-satori-go-uuid") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 2f993ce0ca..ff65cb7a03 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -2216,30 +2216,6 @@ per-goroutine.") (home-page "https://github.com/jtolds/gls") (license license:expat))) -(define-public go-github-com-saracen-walker - (package - (name "go-github-com-saracen-walker") - (version "0.1.4") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/saracen/walker") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "17i2zrbcp0zgwfgap555pk358wpqfa8qj8pmgwhjkzwd77nyl77g")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/saracen/walker")) - (inputs - (list go-golang-org-x-sync)) - (home-page "https://github.com/saracen/walker") - (synopsis "Faster, parallel version of Go's filepath.Walk") - (license license:expat) - (description "The @code{walker} function is a faster, parallel version, of -@code{filepath.Walk}"))) - (define-public gopls (package (name "gopls") |