gnu: Add ruby-sprockets.

* gnu/packages/ruby.scm (ruby-sprockets): New variable.
This commit is contained in:
Christopher Baines 2019-01-28 16:34:56 +00:00
parent c8f079ca16
commit 15606d9896
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -7557,3 +7557,28 @@ (define-public ruby-globalid
uniquely identify it.")
(home-page "https://rubyonrails.org/")
(license license:expat)))
(define-public ruby-sprockets
(package
(name "ruby-sprockets")
(version "3.7.2")
(source
(origin
(method url-fetch)
(uri (rubygems-uri "sprockets" version))
(sha256
(base32
"182jw5a0fbqah5w9jancvfmjbk88h8bxdbwnl4d3q809rpxdg8ay"))))
(build-system ruby-build-system)
(arguments
'(;; No included tests
#:tests? #f))
(propagated-inputs
`(("ruby-concurrent" ,ruby-concurrent)
("ruby-rack" ,ruby-rack)))
(synopsis "Sprockets is a Rack-based asset packaging system")
(description
"Sprockets is a Rack-based asset packaging system that concatenates and
serves JavaScript, CoffeeScript, CSS, LESS, Sass, and SCSS.")
(home-page "https://github.com/rails/sprockets")
(license license:expat)))