gnu: Add ghc-dotgen.
* gnu/packages/haskell-xyz.scm (ghc-dotgen): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
5434fec95d
commit
2b2c8911c6
1 changed files with 24 additions and 0 deletions
|
@ -3342,6 +3342,30 @@ It is modeled after doctest for Python, see
|
||||||
@uref{https://docs.python.org/library/doctest.html, the Doctest website}.")
|
@uref{https://docs.python.org/library/doctest.html, the Doctest website}.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public ghc-dotgen
|
||||||
|
(package
|
||||||
|
(name "ghc-dotgen")
|
||||||
|
(version "0.4.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"mirror://hackage/package/dotgen/dotgen-"
|
||||||
|
version
|
||||||
|
".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"148q93qsmqgr5pzdwvpjqfd6bdm1pwzcp2rblfwswx2x8c5f43fg"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page "https://github.com/ku-fpg/dotgen")
|
||||||
|
(synopsis
|
||||||
|
"Simple interface for building .dot graph files")
|
||||||
|
(description
|
||||||
|
"This package provides a simple interface for building .dot graph
|
||||||
|
files, for input into the dot and graphviz tools. It includes a
|
||||||
|
monadic interface for building graphs.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-double-conversion
|
(define-public ghc-double-conversion
|
||||||
(package
|
(package
|
||||||
(name "ghc-double-conversion")
|
(name "ghc-double-conversion")
|
||||||
|
|
Reference in a new issue