mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: Add ruby-jekyll-watch.
* gnu/packages/ruby.scm (ruby-jekyll-watch): New variable.
This commit is contained in:
parent
88ed727fc5
commit
ceac6f6f5b
1 changed files with 22 additions and 0 deletions
|
@ -5383,3 +5383,25 @@ (define-public ruby-jekyll-sass-converter
|
|||
(description "This gem provide built-in support for the Sass converter
|
||||
in Jekyll.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public ruby-jekyll-watch
|
||||
(package
|
||||
(name "ruby-jekyll-watch")
|
||||
(version "2.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (rubygems-uri "jekyll-watch" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0m7scvj3ki8bmyx5v8pzibpg6my10nycnc28lip98dskf8iakprp"))))
|
||||
(build-system ruby-build-system)
|
||||
(propagated-inputs
|
||||
`(("ruby-listen-3.0" ,ruby-listen-3.0)))
|
||||
(arguments
|
||||
;; No rakefile
|
||||
`(#:tests? #f))
|
||||
(home-page "https://github.com/jekyll/jekyll-watch")
|
||||
(synopsis "Jekyll auto-rebuild support")
|
||||
(description "This gems add the @code{--watch} switch to the jekyll CLI
|
||||
interface. It allows Jekyll to rebuild your site when a file changes.")
|
||||
(license license:expat)))
|
||||
|
|
Loading…
Reference in a new issue