guix-commits
[Top][All Lists]
Advanced

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

17/24: gnu: Add go-github-com-jinzhu-copier.


From: guix-commits
Subject: 17/24: gnu: Add go-github-com-jinzhu-copier.
Date: Fri, 16 Feb 2024 09:21:13 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit 852d0eab39e7289eee708e138833d4e9596363c5
Author: Hilton Chain <hako@ultrarare.space>
AuthorDate: Sat Jul 29 01:20:03 2023 +0800

    gnu: Add go-github-com-jinzhu-copier.
    
    * gnu/packages/golang-xyz.scm (go-github-com-jinzhu-copier): New
    variable.
    
    Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
    Change-Id: Ibff15ec235790b915c852a0d9a33572a05f3374d
---
 gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d2e58001cf..33d77e8507 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -538,6 +538,29 @@ Differentiation between text and binary files}.
 @end itemize")
     (license license:expat)))
 
+(define-public go-github-com-jinzhu-copier
+  (package
+    (name "go-github-com-jinzhu-copier")
+    (version "0.4.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/jinzhu/copier";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0kf29cmmbic72kfrfd1xnass7l9j85impf8mqn5f3fd3ibi9bs74"))))
+    (build-system go-build-system)
+    (arguments
+     (list #:import-path "github.com/jinzhu/copier"))
+    (home-page "https://github.com/jinzhu/copier";)
+    (synopsis "Go copier library")
+    (description
+     "This package provides a library, which supports copying value from one
+struct to another.")
+    (license license:expat)))
+
 (define-public go-github-com-matryer-try
   (package
     (name "go-github-com-matryer-try")



reply via email to

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