avp pushed a commit to branch master
in repository guix.
commit 6aad5262d69499b1d7577e1b62cb0ce17b10fa5d
Author: Artyom V. Poptsov <[email protected]>
AuthorDate: Thu Nov 28 23:49:07 2024 +0000
gnu: gojq: Adjust import and unpack paths.
* gnu/packages/web.scm (gojq) [arguments]<import-path>: Provide path to
the command source.
<unpack-path>: Set to "github.com/itchyny/gojq".
Change-Id: I6a4d0cbdba385460d7ab43d62fe1897922a7c7e9
Reviewed-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/web.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7e355b8d77..cfebf7785a 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -67,6 +67,7 @@
;;; Copyright © 2023 Evgeny Pisemsky <[email protected]>
;;; Copyright © 2024 Tomas Volf <[email protected]>
;;; Copyright © 2024 Zheng Junjie <[email protected]>
+;;; Copyright © 2024 Artyom V. Poptsov <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -5626,7 +5627,9 @@ processor.")
(arguments
(ensure-keyword-arguments
(package-arguments go-github-com-itchyny-gojq)
- (list #:install-source? #f)))))
+ (list #:import-path "github.com/itchyny/gojq/cmd/gojq"
+ #:unpack-path "github.com/itchyny/gojq"
+ #:install-source? #f)))))
(define-public pup
(let ((revision "1")