@@ -4062,3 +4062,28 @@ gist (https://gist.github.com/kballard/272720)")
(description "go-shlex is a simple lexer for go that supports shell-style
quoting, commenting, and escaping.")
(license license:asl2.0))))
+
+(define-public go-github-com-kyoh86-xdg
+ (let ((url "https://github.com/kyoh86/xdg"))
+ (package
+ (name "go-github-com-kyoh86-xdg")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url url)
+ (commit (string-append "v" version))))
+ (sha256
+ (base32
+ "02wrm9rl6qqv3nr2n5yariwg1rgr7w76l1sp0ak1kxin1y184ivf"))
+ (file-name (git-file-name name version))))
+ (build-system go-build-system)
+ (arguments
+ '(#:import-path "github.com/kyoh86/xdg"))
+ (home-page url)
+ (synopsis "Light weight helper functions in golang to get config, data and
+ cache files according to the XDG Base Directory Specification")
+ (description "Light weight helper functions in golang to get config, data
+ and cache files according to the XDG Base Directory Specification.")
+ (license license:expat))))