gnu: Add ghc-easyplot.

* gnu/packages/haskell.scm (ghc-easyplot): New variable.
This commit is contained in:
Federico Beffa 2016-10-16 16:53:06 +02:00
parent 4225c7116d
commit db61a00971
No known key found for this signature in database
GPG key ID: 58936E0E2F1B5A4C

View file

@ -7725,4 +7725,28 @@ (define-public ghc-hmatrix-gsl-stats
interface for statistics based on hmatrix and GSL.")
(license license:bsd-3)))
(define-public ghc-easyplot
(package
(name "ghc-easyplot")
(version "1.0")
(source
(origin
(method url-fetch)
(uri (string-append
"http://hackage.haskell.org/package/easyplot/easyplot-"
version ".tar.gz"))
(sha256
(base32 "18kndgvdj2apjpfga6fp7m16y1gx8zrwp3c5vfj03sx4v6jvciqk"))))
(build-system haskell-build-system)
(propagated-inputs `(("gnuplot" ,gnuplot)))
(arguments
`(#:phases (modify-phases %standard-phases
(add-after 'unpack 'fix-setup-suffix
(lambda _ (rename-file "Setup.lhs" "Setup.hs") #t)))))
(home-page "http://hub.darcs.net/scravy/easyplot")
(synopsis "Haskell plotting library based on gnuplot")
(description "This package provides a plotting library for
Haskell, using gnuplot for rendering.")
(license license:expat)))
;;; haskell.scm ends here