guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 18af0f55f5563d5470c44a753606a6250f11a0b7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jun 24 23:43:46 2026 +0100

    gnu: Add dasel.
    
    * gnu/packages/golang-xyz.scm (dasel): New variable.
---
 gnu/packages/golang-xyz.scm | 15 +++++++++++++++
 1 file changed, 15 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 73dcb82972..4768e22a71 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -35036,6 +35036,21 @@ import layers from images.  Those other tools can then 
either manage the
 concept of images on their own, or let the API/CLI handle storing the image
 metadata and/or configuration.")))
 
+(define-public dasel
+  (package/inherit go-github-com-tomwright-dasel-v3
+    (name "dasel")
+    (arguments
+     (substitute-keyword-arguments arguments
+       ((#:tests? _ #t) #f)
+       ((#:install-source? _ #t) #f)
+       ((#:import-path _) "github.com/tomwright/dasel/v3/cmd/dasel")
+       ((#:unpack-path _ "") "github.com/tomwright/dasel/v3")))
+    (native-inputs
+     (append (package-native-inputs go-github-com-tomwright-dasel-v3)
+             (package-propagated-inputs go-github-com-tomwright-dasel-v3)))
+    (propagated-inputs '())
+    (inputs '())))
+
 (define-public glua
   (package/inherit go-github-com-yuin-gopher-lua
     (name "glua")

Reply via email to