guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

61/62: gnu: Add go-golang-org-x-text-union.


From: Leo Famulari
Subject: 61/62: gnu: Add go-golang-org-x-text-union.
Date: Thu, 12 Oct 2017 21:43:45 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit ae8c7774c06f6cdac7915627fd0b81e828c3e6d0
Author: Leo Famulari <address@hidden>
Date:   Wed Oct 11 20:29:02 2017 -0400

    gnu: Add go-golang-org-x-text-union.
    
    * gnu/packages/syncthing.scm (go-golang-org-x-text-union): New variable.
---
 gnu/packages/syncthing.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/syncthing.scm b/gnu/packages/syncthing.scm
index 2ac39d1..43aeaac 100644
--- a/gnu/packages/syncthing.scm
+++ b/gnu/packages/syncthing.scm
@@ -1283,6 +1283,31 @@ for low-level interaction with the operating system.")
       (home-page "https://go.googlesource.com/sys";)
       (license bsd-3))))
 
+(define* (go-golang-org-x-text-union #:optional
+                                  (packages (list 
go-golang-org-x-text-transform
+                                                  
go-golang-org-x-text-unicode-norm)))
+  (package
+    (name "go-golang-org-x-text")
+    (version (package-version go-golang-org-x-text-transform))
+    (source #f)
+    (build-system trivial-build-system)
+    (arguments
+     '(#:modules ((guix build union))
+       #:builder (begin
+                   (use-modules (ice-9 match)
+                                (guix build union))
+                   (match %build-inputs
+                     (((names . directories) ...)
+                      (union-build (assoc-ref %outputs "out")
+                                   directories))))))
+    (inputs (map (lambda (package)
+                   (list (package-name package) package))
+                 packages))
+    (synopsis "Union of the Go text libraries")
+    (description "A union of the Golang text libraries.")
+    (home-page (package-home-page go-golang-org-x-text-transform))
+    (license (package-license go-golang-org-x-text-transform))))
+
 (define-public go-golang-org-x-text-transform
   (let ((commit "f4b4367115ec2de254587813edaa901bc1c723a8")
         (revision "0"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]