mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 22:50:23 -05:00
gnu: Add julia-sass.
* gnu/packages/julia-xyz.scm (julia-sass): New variable.
This commit is contained in:
parent
ac1166fbdb
commit
647edfd0d3
1 changed files with 22 additions and 0 deletions
|
@ -3578,6 +3578,28 @@ (define-public julia-safetestsets
|
|||
a loadable module.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public julia-sass
|
||||
(package
|
||||
(name "julia-sass")
|
||||
(version "0.2.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/piever/Sass.jl")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0y7kkkj717h5cj659ssry89i5r64symr6pvhr6vv4qmaxrnjxj92"))))
|
||||
(build-system julia-build-system)
|
||||
(propagated-inputs
|
||||
`(("julia-libsass-jll" ,julia-libsass-jll)))
|
||||
(home-page "https://github.com/piever/Sass.jl")
|
||||
(synopsis "Compile scss and sass file to css")
|
||||
(description "This package provides a simple Julian API to use the
|
||||
@code{libsass} library to compile scss and sass files to css.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public julia-scratch
|
||||
(package
|
||||
(name "julia-scratch")
|
||||
|
|
Loading…
Reference in a new issue