gnu: Add ruby-crass.

* gnu/packages/ruby.scm (ruby-crass): New variable.
This commit is contained in:
Ricardo Wurmus 2015-11-25 15:45:15 +01:00
parent f60f500222
commit 3996f0aadc

View file

@ -2282,6 +2282,26 @@ (define-public ruby-activesupport
(home-page "http://www.rubyonrails.org")
(license license:expat)))
(define-public ruby-crass
(package
(name "ruby-crass")
(version "1.0.2")
(source (origin
(method url-fetch)
(uri (rubygems-uri "crass" version))
(sha256
(base32
"1c377r8g7m58y22803iyjgqkkvnnii0pymskda1pardxrzaighj9"))))
(build-system ruby-build-system)
(native-inputs
`(("bundler" ,bundler)
("ruby-minitest" ,ruby-minitest)))
(synopsis "Pure Ruby CSS parser")
(description
"Crass is a pure Ruby CSS parser based on the CSS Syntax Level 3 spec.")
(home-page "https://github.com/rgrove/crass/")
(license license:expat)))
(define-public ruby-ox
(package
(name "ruby-ox")