@@ -4087,3 +4087,29 @@ quoting, commenting, and escaping.")
(description "Light weight helper functions in golang to get config, data
and cache files according to the XDG Base Directory Specification.")
(license license:expat))))
+
+(define-public go-github-com-martinlindhe-base36
+ (let ((url "https://github.com/martinlindhe/base36"))
+ (package
+ (name "go-github-com-martinlindhe-base36")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url url)
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "0hib6cnx543fxbcy7fm3kcfz8ajhd90kxzbld49qi7w930pcz26c"))
+ (file-name (git-file-name name version))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/martinlindhe/base36"))
+ (native-inputs
+ `(("go-github-com-stretchr-testify" ,go-github-com-stretchr-testify)))
+ (home-page url)
+ (synopsis "Implements Base36 encoding and decoding")
+ (description "Implements Base36 encoding and decoding, which is useful to
+ represent large integers in a case-insensitive alphanumeric way.")
+ (license license:expat))))