mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add ruby-mustermann.
* gnu/packages/ruby.scm (ruby-mustermann): New variable.
This commit is contained in:
parent
3355e49cf8
commit
acb9e3d8cc
1 changed files with 22 additions and 0 deletions
|
@ -8380,3 +8380,25 @@ (define-public ruby-sprockets
|
||||||
serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.")
|
serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.")
|
||||||
(home-page "https://github.com/rails/sprockets")
|
(home-page "https://github.com/rails/sprockets")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ruby-mustermann
|
||||||
|
(package
|
||||||
|
(name "ruby-mustermann")
|
||||||
|
(version "1.0.3")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "mustermann" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0lycgkmnyy0bf29nnd2zql5a6pcf8sp69g9v4xw0gcfcxgpwp7i1"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments
|
||||||
|
;; No tests.
|
||||||
|
'(#:tests? #f))
|
||||||
|
(synopsis "Library implementing patterns that behave like regular expressions")
|
||||||
|
(description "Given a string pattern, Mustermann will turn it into an
|
||||||
|
object that behaves like a regular expression and has comparable performance
|
||||||
|
characteristics.")
|
||||||
|
(home-page "https://github.com/sinatra/mustermann")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in a new issue