mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-19 09:22:05 -05:00
gnu: ruby-crass: Update to 1.0.6.
* gnu/packages/ruby.scm (ruby-crass): Update to 1.0.6. [source]: Switch to GIT-FETCH. [native-inputs]: Remove.
This commit is contained in:
parent
075afce25e
commit
a84a185abd
1 changed files with 9 additions and 8 deletions
|
@ -5269,21 +5269,22 @@ (define-public ruby-activesupport
|
||||||
(define-public ruby-crass
|
(define-public ruby-crass
|
||||||
(package
|
(package
|
||||||
(name "ruby-crass")
|
(name "ruby-crass")
|
||||||
(version "1.0.4")
|
(version "1.0.6")
|
||||||
|
(home-page "https://github.com/rgrove/crass")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
;; The gem does not contain tests, so pull from git.
|
||||||
(uri (rubygems-uri "crass" version))
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url home-page)
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0bpxzy6gjw9ggjynlxschbfsgmx8lv3zw1azkjvnb8b9i895dqfi"))))
|
"1gbsb81psgb6xhnwpx4s409jc0mk0gijh039sy5xyi8jpaaadp40"))))
|
||||||
(build-system ruby-build-system)
|
(build-system ruby-build-system)
|
||||||
(native-inputs
|
|
||||||
`(("bundler" ,bundler)
|
|
||||||
("ruby-minitest" ,ruby-minitest)))
|
|
||||||
(synopsis "Pure Ruby CSS parser")
|
(synopsis "Pure Ruby CSS parser")
|
||||||
(description
|
(description
|
||||||
"Crass is a pure Ruby CSS parser based on the CSS Syntax Level 3 spec.")
|
"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)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-nokogumbo
|
(define-public ruby-nokogumbo
|
||||||
|
|
Loading…
Reference in a new issue