summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Scherer <roman@burningswell.com>2025-10-17 14:44:04 +0000
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-29 00:57:05 +0000
commit361987647b322f6e692c49a8a8bfc979db73e3df (patch)
treeb14c7b291f3909b91f4f3048f8c3ce5f0eccbc94
parent82a841c45558d151b3def1fda74673abb15b5622 (diff)
gnu: Add go-rsc-io-script.
* gnu/packages/golang-xyz.scm (go-rsc-io-script): New variable. Change-Id: Id004f1a40adba43944e00a7ff99bb99b234c9f39 Change-Id: Iffc8b45eeaf8c230d4d4b5b23a34b5f9a1aca964 Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 97aa1da0e2c..bce86201d17 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24803,6 +24803,31 @@ described at https://golang.org/s/re2syntax, except for @code{\\C.}")
prints the Go version used to build that executable.")
(license license:bsd-3)))
+(define-public go-rsc-io-script
+ (package
+ (name "go-rsc-io-script")
+ (version "0.0.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rsc/script")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05yl5nqhcjhp4sjdh7a9m9s6w4lm4qhn4bhi7v6hhsbfn348jxfh"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "rsc.io/script"))
+ (propagated-inputs (list go-golang-org-x-tools))
+ (home-page "https://rsc.io/script")
+ (synopsis "Small scripting language for Go")
+ (description
+ "Package script implements a small, customizable, platform-agnostic
+scripting language.")
+ (license license:bsd-3)))
+
(define-public go-sigs-k8s-io-json
(package
(name "go-sigs-k8s-io-json")