diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-06-18 18:10:54 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-07-03 22:23:22 +0100 |
commit | d40d0aa57cc141fa96d865f72368828c0316c3bb (patch) | |
tree | 8da31956c09601db3f9ed1326a95272a85551e22 | |
parent | 7b29927cc947bc66cde79ec9bfb8e20b66c7673f (diff) | |
download | guix-d40d0aa57cc141fa96d865f72368828c0316c3bb.tar.gz guix-d40d0aa57cc141fa96d865f72368828c0316c3bb.zip |
gnu: Add go-github-com-otiai10-copy.
* gnu/packages/golang-xyz.scm (go-github-com-otiai10-copy): New variable.
Change-Id: Ia1e9e2180f668546a775c6d45ad316303ae310d8
-rw-r--r-- | gnu/packages/golang-xyz.scm | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 78bc6dd71b..944d5f93f8 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3563,6 +3563,44 @@ comparison library, to Go. Both a library and a command-line tool are included in this package.") (license license:expat))) +(define-public go-github-com-otiai10-copy + (package + (name "go-github-com-otiai10-copy") + (version "1.14.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/otiai10/copy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0fv4cwk4k5fsd3hq5akqxrd5qxj9qm6a2wlp6s1knblhzkm1jxzb")))) + (build-system go-build-system) + (arguments + (list + #:go go-1.21 + #:import-path "github.com/otiai10/copy" + #:phases + #~(modify-phases %standard-phases + (add-before 'check 'make-test-directory-writable + (lambda* (#:key import-path #:allow-other-keys) + (with-directory-excursion (string-append "src/" import-path) + (for-each make-file-writable (find-files "./test"))))) + (add-after 'check 'remove-test-data + (lambda* (#:key import-path #:allow-other-keys) + (with-directory-excursion (string-append "src/" import-path) + (delete-file-recursively "./test"))))))) + (native-inputs + (list go-github-com-otiai10-mint)) + (propagated-inputs + (list go-golang-org-x-sync go-golang-org-x-sys)) + (home-page "https://github.com/otiai10/copy") + (synopsis "Go copy directory recursively") + (description + "This package implments recursive copy functinoality for directory.") + (license license:expat))) + (define-public go-github-com-pbnjay-memory (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c") (revision "2")) |