gnu: Add ruby-mustermann.

* gnu/packages/ruby.scm (ruby-mustermann): New variable.
master
Pierre Neidhardt 2019-02-28 18:40:13 +01:00
parent 3355e49cf8
commit acb9e3d8cc
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 22 additions and 0 deletions

View File

@ -8380,3 +8380,25 @@ uniquely identify it.")
serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.")
(home-page "https://github.com/rails/sprockets")
(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)))