mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-31 14:56:54 +01:00
gnu: Add ruby-liquid-c-bootstrap.
* gnu/packages/ruby.scm (ruby-liquid-c-bootstrap): New variable.
This commit is contained in:
parent
464aa1def7
commit
8b8d8d8fd9
1 changed files with 21 additions and 0 deletions
|
@ -13467,6 +13467,27 @@ (define-public ruby-liquid
|
||||||
to load dynamic content on storefronts.")
|
to load dynamic content on storefronts.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
;;; This variant is purposefully incomplete, lacking ruby-liquid so that it
|
||||||
|
;;; can be used for ruby-liquid's test suite.
|
||||||
|
(define ruby-liquid-c-bootstrap
|
||||||
|
(package
|
||||||
|
(name "ruby-liquid-c-bootstrap")
|
||||||
|
(version "4.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (rubygems-uri "liquid-c" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0jl37jz9hbfbhknryx4myxqx4n1f5dzyzmf1sapkcbw93xyrmkch"))))
|
||||||
|
(build-system ruby-build-system)
|
||||||
|
(arguments (list #:tests? #f))
|
||||||
|
(native-inputs (list ruby-rake-compiler))
|
||||||
|
(synopsis "Liquid performance extension in C")
|
||||||
|
(description "This package provides a Partial native implementation of the
|
||||||
|
liquid ruby gem in C that makes it operate about three times faster.")
|
||||||
|
(home-page "https://github.com/shopify/liquid-c")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public ruby-localhost
|
(define-public ruby-localhost
|
||||||
(package
|
(package
|
||||||
(name "ruby-localhost")
|
(name "ruby-localhost")
|
||||||
|
|
Loading…
Reference in a new issue