guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.
commit 1e65f0f909ed0730bed76c5f10fb0f4033c42696
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Feb 16 01:34:24 2025 +0100
gnu: Add ruby-standard-performance.
* gnu/packages/ruby.scm (ruby-standard-performance): New variable.
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/ruby.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index 206b6d6749..059fe6531f 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2343,6 +2343,26 @@ as defaults in Standard Ruby.")
(home-page "https://github.com/standardrb/standard-custom")
(license license:expat)))
+(define-public ruby-standard-performance
+ (package
+ (name "ruby-standard-performance")
+ (version "1.6.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "standard-performance" version))
+ (sha256
+ (base32 "1x298w3wmq8cavbsg903wc3arxp3xh2x8263brvy128436m732rd"))))
+ (build-system ruby-build-system)
+ (arguments '(#:tests? #f)) ;Circular dependency on ruby-standard.
+ (propagated-inputs (list ruby-lint-roller ruby-rubocop-performance))
+ (synopsis "Standard Ruby Plugin for rubocop-performance")
+ (description
+ "This package is a Standard Ruby Plugin providing configuration for
+@code{rubocop-performance}.")
+ (home-page "https://github.com/standardrb/standard-performance")
+ (license license:expat)))
+
(define-public ruby-standard
(package
(name "ruby-standard")