gnu: Add julia-hiccup.
* gnu/packages/julia-xyz.scm (julia-hiccup-0.2.2): New variable.
This commit is contained in:
parent
79c4120285
commit
52f7fc92e6
|
@ -941,3 +941,30 @@ lines.Julia code and expressions.")
|
||||||
functional programming - lazily-evaluated lists and a large library of
|
functional programming - lazily-evaluated lists and a large library of
|
||||||
functions for working with them.")
|
functions for working with them.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public julia-hiccup
|
||||||
|
(package
|
||||||
|
(name "julia-hiccup")
|
||||||
|
(version "0.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri
|
||||||
|
(git-reference
|
||||||
|
(url "https://github.com/JunoLab/Hiccup.jl")
|
||||||
|
(commit
|
||||||
|
(string-append "v" version))))
|
||||||
|
(file-name "Hiccup")
|
||||||
|
(sha256
|
||||||
|
(base32 "0m6my7d48658x4v0glv1006f0yvqd49f875b74q7kq3y6a9sxy5z"))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("julia-macrotools" ,julia-macrotools)
|
||||||
|
("julia-orderedcollections" ,julia-orderedcollections)
|
||||||
|
("julia-lazy" ,julia-lazy)))
|
||||||
|
(build-system julia-build-system)
|
||||||
|
(home-page "https://github.com/JunoLab/Hiccup.jl")
|
||||||
|
(synopsis "Super-simple library designed to make making HTML easy in
|
||||||
|
Julia")
|
||||||
|
(description "HTML Domain Specific Language for Julia, inspired by
|
||||||
|
Clojure's Hiccup DSL.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Reference in New Issue