diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-02-18 19:54:50 +0000 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:40:02 +0200 |
commit | 051b69affb1b167f95e24d32f67cd71b5852376f (patch) | |
tree | a0341bb67f1e94da3efce74c3194dc1a5cc4e878 | |
parent | aa4bc382d869700fce46b19a22cff2e0239f5f01 (diff) |
gnu: ruby-hydra-minimal: Update to 0.0.0-1.a4cab70.
* gnu/packages/ruby.scm (ruby-hydra-minimal): Update to 0.0.0-1.a4cab70.
(ruby-hydra-minimal/pinned): Avoid changes.
Change-Id: I38707edf58d2adac99b2d6042e287062b059469a
-rw-r--r-- | gnu/packages/ruby.scm | 36 |
1 files changed, 26 insertions, 10 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 46edfc31b4..3cf364e307 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -4030,11 +4030,11 @@ two hashes.") (define-public ruby-hydra-minimal ;; No releases yet. - (let ((commit "5abfa378743756ae4d9306cc134bcc482f5c9525") - (revision "0")) + (let ((commit "a4cab705a8a281e4356cb6a05a1946443ad9d53b") + (revision "1")) (package (name "ruby-hydra-minimal") - (version (git-version "0.0" revision commit)) + (version (git-version "0.0.0" revision commit)) (home-page "https://github.com/hyphenation/hydra") (source (origin (method git-fetch) @@ -4045,7 +4045,7 @@ two hashes.") (patches (search-patches "ruby-hydra-minimal-no-byebug.patch")) (sha256 (base32 - "1cik398l2765y3d9sdhjzki3303hkry58ac6jlkiy7iy62nm529f")))) + "1swzab7i4cqk1bck7p5m3bh526jh0v6m9qq720r3270zbjc8x8z3")))) (build-system ruby-build-system) (arguments ;; Avoid rspec dependency. @@ -4058,12 +4058,28 @@ It is a low-dependency variant of ruby-hydra.") ;; Pinned variant for use by texlive (define-public ruby-hydra-minimal/pinned - (hidden-package - (package - (inherit ruby-hydra-minimal) - (arguments - (cons* #:ruby ruby-2.7 - (package-arguments ruby-hydra-minimal)))))) + (let ((commit "5abfa378743756ae4d9306cc134bcc482f5c9525") + (revision "0")) + (hidden-package + (package + (inherit ruby-hydra-minimal) + (version (git-version "0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/hyphenation/hydra") + (commit commit))) + (file-name (git-file-name "ruby-hydra-minimal" version)) + ;; byebug is a non-essential debugging utility that brings in + ;; many dependencies. + (patches (search-patches "ruby-hydra-minimal-no-byebug.patch")) + (sha256 + (base32 + "1cik398l2765y3d9sdhjzki3303hkry58ac6jlkiy7iy62nm529f")))) + (arguments + (list + #:ruby ruby-2.7 + #:tests? #f)))))) (define-public ruby-hydra (package |