guix_mirror_bot pushed a commit to branch ruby-team
in repository guix.
commit f7d0a4fab8b122d70c6cde6807699ae6a25ece31
Author: Nicolas Graves <[email protected]>
AuthorDate: Sun Feb 16 01:34:23 2025 +0100
gnu: Add ruby-standard-custom.
* gnu/packages/ruby.scm (ruby-standard-custom): 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 6f3ea6b54f..206b6d6749 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -2323,6 +2323,26 @@ Batch and flush behavior.
(home-page "https://github.com/jordansissel/ruby-stud")
(license license:asl2.0)))
+(define-public ruby-standard-custom
+ (package
+ (name "ruby-standard-custom")
+ (version "1.0.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "standard-custom" version))
+ (sha256
+ (base32 "0av55ai0nv23z5mhrwj1clmxpgyngk7vk6rh58d4y1ws2y2dqjj2"))))
+ (build-system ruby-build-system)
+ (arguments '(#:tests? #f)) ;Circular dependency on ruby-standard.
+ (propagated-inputs (list ruby-lint-roller ruby-rubocop))
+ (synopsis "Plugin of custom cops for Standard Ruby")
+ (description
+ "This package provides a implementations of custom cops that are bundled
+as defaults in Standard Ruby.")
+ (home-page "https://github.com/standardrb/standard-custom")
+ (license license:expat)))
+
(define-public ruby-standard
(package
(name "ruby-standard")