guix-commits
[Top][All Lists]
Advanced

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

04/27: gnu: Add go-github-com-cheekybits-genny.


From: guix-commits
Subject: 04/27: gnu: Add go-github-com-cheekybits-genny.
Date: Mon, 29 Jul 2019 14:57:18 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 8201afdf0cbbba25fb09089c872211178a85fc9d
Author: Leo Famulari <address@hidden>
Date:   Tue Jul 16 11:22:20 2019 -0400

    gnu: Add go-github-com-cheekybits-genny.
    
    * gnu/packages/golang.scm (go-github-com-cheekybits-genny): New variable.
---
 gnu/packages/golang.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 302c413..45a77c5 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3532,3 +3532,27 @@ mutex, simply ignore the RLock/RUnlock functions.")
 the Go standard library's TLS 1.3 implementation.")
     (home-page "https://github.com/marten-seemann/qtls";)
     (license license:bsd-3)))
+
+(define-public go-github-com-cheekybits-genny
+  (package
+    (name "go-github-com-cheekybits-genny")
+    (version "1.0.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                     (url "https://github.com/cheekybits/genny";)
+                     (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1pcir5ic86713aqa51581rfb67rgc3m0c72ddjfcp3yakv9vyq87"))))
+    (build-system go-build-system)
+    (arguments
+     '(#:import-path "github.com/cheekybits/genny"))
+    (propagated-inputs
+     `(("go-golang-org-x-tools" ,go-golang-org-x-tools)))
+    (synopsis "Generics for Go")
+    (description "This package provides @code{genny}, a Go language
+implementation of generics.")
+    (home-page "https://github.com/cheekybits/genny/";)
+    (license license:expat)))



reply via email to

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