all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#58099] [PATCH] gnu: Add go-github-com-savsgio-gotils.
@ 2022-09-26 18:43 Adam Kandur
  2022-10-13 11:40 ` bug#58099: " Christopher Baines
  0 siblings, 1 reply; 2+ messages in thread
From: Adam Kandur @ 2022-09-26 18:43 UTC (permalink / raw)
  To: 58099; +Cc: Adam Kandur

* gnu/packages/golang.scm (go-github-com-savsgio-gotils): New variable.
---
 gnu/packages/golang.scm | 77 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 29a11a4..af6a66a 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1215,6 +1215,83 @@ (define-public go-github-com-schachmat-ingo
 configuration file.")
     (license license:isc)))
 
+(define-public go-github-com-savsgio-gotils
+  (let ((commit "52f3993e8d6d2629f18e7b7383b7f54a3d3f1d1f")
+        (revision "0"))
+	(package
+      (name "go-github-com-savsgio-gotils")
+      (version (git-version "0.0.0" revision commit))
+      (source
+       (origin
+		 (method git-fetch)
+		 (uri (git-reference
+               (url "https://github.com/savsgio/gotils")
+               (commit commit)))
+		 (file-name (git-file-name name version))
+		 (sha256
+          (base32 "0qr7i62h53frcig26vj027r2hn9zxsjzd7113wvbxy7qpprjjbjb"))))
+      (build-system go-build-system)
+	  (native-inputs
+       (list go-github-com-google-uuid
+			 go-github-com-valyala-bytebufferpool))
+      (arguments
+       '(#:import-path "github.com/savsgio/gotils"
+		 #:phases
+		 (modify-phases %standard-phases
+		   (replace 'build
+			 (lambda arguments
+			   (for-each
+				(lambda (directory)
+				  (apply (assoc-ref %standard-phases 'build)
+						 `(,@arguments #:import-path ,directory)))
+				(list
+				 "github.com/savsgio/gotils/bytes"
+				 "github.com/savsgio/gotils/encoding/base64"
+				 "github.com/savsgio/gotils/math"
+				 "github.com/savsgio/gotils/nocopy"
+				 "github.com/savsgio/gotils/strconv"
+				 "github.com/savsgio/gotils/strings"
+				 "github.com/savsgio/gotils/sync"
+				 "github.com/savsgio/gotils/time"
+				 "github.com/savsgio/gotils/uuid"))))
+		   (replace 'check
+			 (lambda arguments
+			   (for-each
+				(lambda (directory)
+				  (apply (assoc-ref %standard-phases 'check)
+						 `(,@arguments #:import-path ,directory)))
+				(list
+				 "github.com/savsgio/gotils/bytes"
+				 "github.com/savsgio/gotils/encoding/base64"
+				 "github.com/savsgio/gotils/math"
+				 "github.com/savsgio/gotils/nocopy"
+				 "github.com/savsgio/gotils/strconv"
+				 "github.com/savsgio/gotils/strings"
+				 "github.com/savsgio/gotils/sync"
+				 "github.com/savsgio/gotils/time"
+				 "github.com/savsgio/gotils/uuid"))))
+		   (replace 'install
+			 (lambda arguments
+			   (for-each
+				(lambda (directory)
+				  (apply (assoc-ref %standard-phases 'install)
+						 `(,@arguments #:import-path ,directory)))
+				(list
+				 "github.com/savsgio/gotils/bytes"
+				 "github.com/savsgio/gotils/encoding/base64"
+				 "github.com/savsgio/gotils/math"
+				 "github.com/savsgio/gotils/nocopy"
+				 "github.com/savsgio/gotils/strconv"
+				 "github.com/savsgio/gotils/strings"
+				 "github.com/savsgio/gotils/sync"
+				 "github.com/savsgio/gotils/time"
+				 "github.com/savsgio/gotils/uuid")))))))
+      (home-page "https://github.com/savsgio/gotils")
+      (synopsis "Golang utlities")
+      (description
+       "Golang utlities to make your life easier with zero allocations.")
+      (license license:asl2.0))))
+
 (define-public go-github-com-riobard-go-bloom
   (let ((commit "cdc8013cb5b3eb0efebec85f0e904efccac42df9")
         (revision "0"))
-- 
2.36.1





^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#58099: [PATCH] gnu: Add go-github-com-savsgio-gotils.
  2022-09-26 18:43 [bug#58099] [PATCH] gnu: Add go-github-com-savsgio-gotils Adam Kandur
@ 2022-10-13 11:40 ` Christopher Baines
  0 siblings, 0 replies; 2+ messages in thread
From: Christopher Baines @ 2022-10-13 11:40 UTC (permalink / raw)
  To: Adam Kandur; +Cc: 58099-done

[-- Attachment #1: Type: text/plain, Size: 496 bytes --]


Adam Kandur <kefironpremise@gmail.com> writes:

> * gnu/packages/golang.scm (go-github-com-savsgio-gotils): New variable.
> ---
>  gnu/packages/golang.scm | 77 +++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 77 insertions(+)

Its a good idea to run guix lint on packages before you submit
patches. On this patch, it raised some issues with using tabs in
particular.

I've gone ahead and fixed those and pushed this patch as
10d429f2fce321d8285684503094694ec3979865.

Thanks,

Chris

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 987 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-10-13 11:53 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-26 18:43 [bug#58099] [PATCH] gnu: Add go-github-com-savsgio-gotils Adam Kandur
2022-10-13 11:40 ` bug#58099: " Christopher Baines

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.