diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2021-09-14 15:43:30 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2021-09-30 14:20:15 +0300 |
commit | 647edfd0d38fd1e365d11e7ae3cafb9558b91319 (patch) | |
tree | 7a506f0cb7e9a4bd2b6c720dda86bdecb5ab47e3 /gnu | |
parent | ac1166fbdb993c29dd87f210f7933e3e54c02124 (diff) | |
download | guix-647edfd0d38fd1e365d11e7ae3cafb9558b91319.tar.gz guix-647edfd0d38fd1e365d11e7ae3cafb9558b91319.zip |
gnu: Add julia-sass.
* gnu/packages/julia-xyz.scm (julia-sass): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/julia-xyz.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/julia-xyz.scm b/gnu/packages/julia-xyz.scm index c4255c7226..aac2a246a0 100644 --- a/gnu/packages/julia-xyz.scm +++ b/gnu/packages/julia-xyz.scm @@ -3578,6 +3578,28 @@ through matrix-vector multiplication.") 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") |