3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

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

View file

@ -5350,3 +5350,25 @@ the @file{spec} directory.")
(description "Sass is a CSS extension language. It extends CSS with
features that don't exist yet like variables, nesting, mixins and inheritance.")
(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)))