me
/
guix
Archived
1
0
Fork 0

gnu: Add ruby-date.

* gnu/packages/ruby.scm (ruby-date): New variable.
master
Maxim Cournoyer 2023-03-10 14:28:07 -05:00
parent 2b64afab76
commit 050ac8fc59
No known key found for this signature in database
GPG Key ID: 1260E46482E63562
1 changed files with 22 additions and 0 deletions

View File

@ -670,6 +670,28 @@ groups.")
"0psjy5kdlz3ph39br0m01w65i1ikagnqlg39f8p65jh5q7dz8hwc")))) "0psjy5kdlz3ph39br0m01w65i1ikagnqlg39f8p65jh5q7dz8hwc"))))
(propagated-inputs `()))) (propagated-inputs `())))
(define-public ruby-date
(package
(name "ruby-date")
(version "3.3.3")
(source (origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ruby/date")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"1jiqjnaap1jk1r8z37iicnzqha1rhc713qmcir17f4vnz8ac8v75"))))
(build-system ruby-build-system)
(arguments (list #:test-target "default"))
(native-inputs (list ruby-rake-compiler))
(synopsis "Ruby @code{Object} subclass with date comparison capability")
(description "This package provides a subclass of @code{Object} that
includes the @code{Comparable} module for handling dates.")
(home-page "https://github.com/ruby/date")
(license license:bsd-2)))
(define-public ruby-diff-lcs (define-public ruby-diff-lcs
(package (package
(name "ruby-diff-lcs") (name "ruby-diff-lcs")