me
/
guix
Archived
1
0
Fork 0

gnu: Add ghc-colour.

* gnu/packages/haskell.scm (ghc-colour): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
master
ng0 2016-09-18 16:09:59 +00:00 committed by Leo Famulari
parent 1d9db656c9
commit e1a56bb258
No known key found for this signature in database
GPG Key ID: 2646FA30BACA7F08
1 changed files with 22 additions and 0 deletions

View File

@ -6887,4 +6887,26 @@ functions follow the same style as ordinary lists, so it is easy to convert code
from using 'String' to 'ByteString'.")
(license license:bsd-3)))
(define-public ghc-colour
(package
(name "ghc-colour")
(version "2.3.3")
(source
(origin
(method url-fetch)
(uri (string-append
"https://hackage.haskell.org/package/colour/colour-"
version ".tar.gz"))
(sha256
(base32
"1qmn1778xzg07jg9nx4k1spdz2llivpblf6wwrps1qpqjhsac5cd"))))
(build-system haskell-build-system)
(home-page "http://www.haskell.org/haskellwiki/Colour")
(synopsis "Model for human colour perception")
(description
"This package provides a data type for colours and transparency.
Colours can be blended and composed. Various colour spaces are
supported. A module of colour names (\"Data.Colour.Names\") is provided.")
(license license:expat)))
;;; haskell.scm ends here