gnu: Add ruby-jekyll-sass-converter.

* gnu/packages/ruby.scm (ruby-jekyll-sass-converter): New variable.
This commit is contained in:
Julien Lepiller 2018-08-26 14:07:08 +02:00
parent f00f449223
commit 5e242cb44c
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 22 additions and 0 deletions

View File

@ -5350,3 +5350,25 @@ the @file{spec} directory.")
(description "Sass is a CSS extension language. It extends CSS with (description "Sass is a CSS extension language. It extends CSS with
features that don't exist yet like variables, nesting, mixins and inheritance.") features that don't exist yet like variables, nesting, mixins and inheritance.")
(license license:expat))) (license license:expat)))
(define-public ruby-jekyll-sass-converter
(package
(name "ruby-jekyll-sass-converter")
(version "1.5.2")
(source (origin
(method url-fetch)
(uri (rubygems-uri "jekyll-sass-converter" version))
(sha256
(base32
"008ikh5fk0n6ri54mylcl8jn0mq8p2nfyfqif2q3pp0lwilkcxsk"))))
(build-system ruby-build-system)
(propagated-inputs
`(("ruby-sass" ,ruby-sass)))
(arguments
;; No rakefile
`(#:tests? #f))
(home-page "https://github.com/jekyll/jekyll-sass-converter")
(synopsis "Sass converter for Jekyll")
(description "This gem provide built-in support for the Sass converter
in Jekyll.")
(license license:expat)))