1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-17 12:30:38 +02:00

gnu: go-golang-org-x-text-transform: Inherit from related package.

* gnu/packages/golang.scm (go-golang-org-x-text-transform): Inherit from
go-golang-org-x-text-encoding.

Signed-off-by: Danny Milosavljevic <dannym@scratchpost.org>
This commit is contained in:
Brian Leung 2019-06-25 20:43:23 +02:00 committed by Danny Milosavljevic
parent 06c2d0e6c1
commit 7e6da91fa7
No known key found for this signature in database
GPG key ID: E71A35542C30BAA5

View file

@ -1202,32 +1202,17 @@ encodings are provided in subpackages.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public go-golang-org-x-text-transform (define-public go-golang-org-x-text-transform
(let ((commit "e19ae1496984b1c655b8044a65c0300a3c878dd3") (package
(revision "1")) (inherit go-golang-org-x-text-encoding)
(package (name "go-golang-org-x-text-transform")
(name "go-golang-org-x-text-transform") (arguments
(version (git-version "0.0.0" revision commit)) `(#:import-path "golang.org/x/text/transform"
(source (origin #:unpack-path "golang.org/x/text"))
(method git-fetch) (synopsis "Go text transformation")
(uri (git-reference (description "This package provides @code{transform}, which provides
(url "https://go.googlesource.com/text")
(commit commit)))
(file-name (string-append "go.googlesource.com-text-"
version "-checkout"))
(sha256
(base32
"1cvnnx8nwx5c7gr6ajs7sldhbqh52n7h6fsa3i21l2lhx6xrsh4w"))))
(build-system go-build-system)
(arguments
`(#:import-path "golang.org/x/text/transform"
#:unpack-path "golang.org/x/text"))
(synopsis "Go text transformation")
(description "This package provides @code{transform}, which provides
reader and writer wrappers that transform the bytes passing through. Example reader and writer wrappers that transform the bytes passing through. Example
transformations provided by other packages include normalization and conversion transformations provided by other packages include normalization and conversion
between character sets.") between character sets.")))
(home-page "https://go.googlesource.com/text")
(license license:bsd-3))))
(define-public go-golang-org-x-text-unicode-norm (define-public go-golang-org-x-text-unicode-norm
(let ((commit "e19ae1496984b1c655b8044a65c0300a3c878dd3") (let ((commit "e19ae1496984b1c655b8044a65c0300a3c878dd3")