gnu: Add ghc-th-reify-many.
* gnu/packages/haskell.scm (ghc-th-reify-many): New variable.
This commit is contained in:
parent
25101be9dc
commit
536b84a832
1 changed files with 26 additions and 0 deletions
|
@ -5257,6 +5257,32 @@ datatypes.")
|
||||||
@dfn{abstract syntax trees} (ASTs).")
|
@dfn{abstract syntax trees} (ASTs).")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-th-reify-many
|
||||||
|
(package
|
||||||
|
(name "ghc-th-reify-many")
|
||||||
|
(version "0.1.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append "http://hackage.haskell.org/package/"
|
||||||
|
"th-reify-many/th-reify-many-"
|
||||||
|
version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"00hryljcs434wcv1vaamfdbjk857f46djxv7mlwplkl3zsmfhlfx"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("ghc-mtl" ,ghc-mtl)
|
||||||
|
("ghc-safe" ,ghc-safe)
|
||||||
|
("ghc-th-expand-syns" ,ghc-th-expand-syns)))
|
||||||
|
(home-page "http://github.com/mgsloan/th-reify-many")
|
||||||
|
(synopsis "Recurseively reify template haskell datatype info")
|
||||||
|
(description
|
||||||
|
"th-reify-many provides functions for recursively reifying top level
|
||||||
|
declarations. The main intended use case is for enumerating the names of
|
||||||
|
datatypes reachable from an initial datatype, and passing these names to some
|
||||||
|
function which generates instances.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public idris
|
(define-public idris
|
||||||
(package
|
(package
|
||||||
(name "idris")
|
(name "idris")
|
||||||
|
|
Reference in a new issue