summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/golang-xyz.scm24
-rw-r--r--gnu/packages/golang.scm23
2 files changed, 24 insertions, 23 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 5bd58289f6..943e845d95 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8496,6 +8496,30 @@ very eas to use.")
"This packae provides a wrapper around @code{libedit} for Golang.")
(license license:asl2.0)))
+(define-public go-github-com-kortschak-utter
+ (package
+ (name "go-github-com-kortschak-utter")
+ (version "1.7.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/kortschak/utter")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1pycm9kkfwpxz10v6f3w0478qy66bzaginr94rnmnnz7kp40fa00"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/kortschak/utter"))
+ (home-page "https://github.com/kortschak/utter")
+ (synopsis "Deep pretty printer")
+ (description
+ "This package implements a deep pretty printer for Go data structures to
+aid data snapshotting.")
+ (license license:isc)))
+
(define-public go-github-com-kpango-glg
(package
(name "go-github-com-kpango-glg")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index dec2cc7c58..2b39193f94 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1218,29 +1218,6 @@ form that bypasses network filtering, allowing the application to work on
networks where it would otherwise be blocked or heavily throttled.")
(license license:expat)))
-(define-public go-github-com-kortschak-utter
- (package
- (name "go-github-com-kortschak-utter")
- (version "1.7.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/kortschak/utter")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1pycm9kkfwpxz10v6f3w0478qy66bzaginr94rnmnnz7kp40fa00"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/kortschak/utter"))
- (home-page "https://github.com/kortschak/utter")
- (synopsis "Deep pretty printer")
- (description
- "This package implements a deep pretty printer for Go data structures to
-aid data snapshotting.")
- (license license:isc)))
-
(define-public go-github-com-leonelquinteros-gotext
(package
(name "go-github-com-leonelquinteros-gotext")