diff options
| author | Nicolas Graves <ngraves@ngraves.fr> | 2025-02-16 01:34:24 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-06-20 20:40:00 +0200 |
| commit | 79e92e9c8fc546560255fe65711cd5b82852dd73 (patch) | |
| tree | ffa9b5bac6575fdabc154f2351e722426e127fa1 | |
| parent | e9489bf973a8188fb925e912dbd8aa9d73a07005 (diff) | |
gnu: Add ruby-standard-performance.
* gnu/packages/ruby.scm (ruby-standard-performance): New variable.
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/ruby.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index de33e5f194f..a995133e328 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -2349,6 +2349,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") |
