27 lines
995 B
Scheme
27 lines
995 B
Scheme
(use-modules (gnu packages haskell-xyz)
|
|
(gnu packages haskell-web)
|
|
(guix build-system haskell)
|
|
(guix download)
|
|
(guix gexp)
|
|
(guix git-download)
|
|
(guix licenses)
|
|
(guix packages))
|
|
|
|
(package
|
|
(name "ghc-template")
|
|
(version "0.2.0.10")
|
|
(source (origin
|
|
(method url-fetch)
|
|
(uri (hackage-uri "template" version))
|
|
(sha256
|
|
(base32
|
|
"10mcnhi2rdflmv79z0359nn5sylifvk9ih38xnjqqby6n4hs7mcg"))))
|
|
(build-system haskell-build-system)
|
|
(properties '((upstream-name . "template")))
|
|
(home-page "http://hackage.haskell.org/package/template")
|
|
(synopsis "Simple string substitution")
|
|
(description
|
|
"Simple string substitution library that supports \\\"$\\\"-based substitution.
|
|
Meant to be used when Text.Printf or string concatenation would lead to code
|
|
that is hard to read but when a full blown templating system is overkill.")
|
|
(license bsd-3))
|