diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-14 21:59:17 +0000 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-15 18:06:16 +0000 |
| commit | bb610e86b61779df866387ae7bd1e6748b55bcdc (patch) | |
| tree | 907f7a9cf76100375eaa4d6b2ca3ae23920d957d /gnu | |
| parent | a8e08779f6c4a295d378bd13b70864d911cb31ce (diff) | |
gnu: Add go-github-com-elliotwutingfeng-asciiset.
* gnu/packages/golang-xyz.scm (go-github-com-elliotwutingfeng-asciiset): New variable.
Change-Id: I1940d672df76d32d4e255fa6cf08cdd634e5759b
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 310d8c1259..f1ff4d8eb0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8080,6 +8080,34 @@ O(1) for @code{Set}, @code{Get}, @code{Delete} and @code{Len}.") #~(modify-phases %standard-phases (delete 'remove-submodule))))))) +(define-public go-github-com-elliotwutingfeng-asciiset + (package + (name "go-github-com-elliotwutingfeng-asciiset") + (version "0.0.0-20260129054604-cfde2086bc57") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/elliotwutingfeng/asciiset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1ww73wc7zfqay3wqqglxq2g7qbm00kbmx14ffc9gcp5yx9mzcm3r")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/elliotwutingfeng/asciiset")) + (home-page "https://github.com/elliotwutingfeng/asciiset") + (synopsis "Asciiset is an ASCII character bitset for Golang") + (description + "Package asciiset is an ASCII character bitset. Bitsets are fast and +memory-efficient data structures for storing and retrieving information using +bitwise operations. @code{asciiset} is an extension of the @code{asciiSet} +data structure from the Go Standard library +@url{https://cs.opensource.google/go/go/+/master:src/bytes/bytes.go, source +code}.") + (license license:bsd-3))) + (define-public go-github-com-emersion-go-autostart (package (name "go-github-com-emersion-go-autostart") |
