summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2023-07-27 00:03:32 +0200
committerHartmut Goebel <h.goebel@crazy-compilers.com>2024-02-24 16:42:41 +0100
commit44598ec6e64e90970e8ce0be00846c32f45a2094 (patch)
tree22874863eca1381b1ad07164cdaf07323dfbcc5f /gnu/packages
parent077bcc2e1758c22eb5eb354b2f3eb9b7ed046322 (diff)
gnu: Add ruby-stream.
* gnu/packages/ruby.scm (ruby-stream): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/ruby.scm23
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 1a5ab8de113..1281a096c83 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -14956,6 +14956,29 @@ can be used to build formatters, linters, language servers, and more.")
14956 (home-page "https://github.com/ruby/stringio") 14956 (home-page "https://github.com/ruby/stringio")
14957 (license license:bsd-2))) 14957 (license license:bsd-2)))
14958 14958
14959(define-public ruby-stream
14960 (package
14961 (name "ruby-stream")
14962 (version "0.5.5")
14963 (source (origin
14964 (method url-fetch)
14965 (uri (rubygems-uri "stream" version))
14966 (sha256
14967 (base32
14968 "016m9v81vpj14d8g5ins91zc4pzl7vf5f1gxl7jhfsfy601k7cv2"))))
14969 (build-system ruby-build-system)
14970 (arguments
14971 '(#:phases
14972 (modify-phases %standard-phases
14973 (add-before 'check 'remove-version-constraints
14974 (lambda _
14975 (delete-file "Gemfile.lock"))))))
14976 (native-inputs (list bundler ruby-stringio ruby-webrick ruby-yard))
14977 (synopsis "Interface for external iterators")
14978 (description "Module Stream defines an interface for external iterators.")
14979 (home-page "https://github.com/monora/stream")
14980 (license license:bsd-2)))
14981
14959(define sorbet-version "0.5.10610.20230106174520-1fa668010") 14982(define sorbet-version "0.5.10610.20230106174520-1fa668010")
14960 14983
14961(define sorbet-monorepo 14984(define sorbet-monorepo