gnu: Add ghc-libmpd.

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

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Gabriel Hondet 2019-01-24 20:16:11 +01:00 committed by Ludovic Courtès
parent bd414e273c
commit 4ad7d037ad
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 32 additions and 0 deletions

View File

@ -11461,4 +11461,36 @@ foreign imports by hand (or using hsc2hs), this ensures that C functions are
imported with the correct Haskell types.")
(license license:gpl2)))
(define-public ghc-libmpd
(package
(name "ghc-libmpd")
(version "0.9.0.9")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://hackage/package/libmpd/libmpd-"
version
".tar.gz"))
(sha256
(base32
"1931m23iqb4wddpdidm4ph746zpaw41kkjzmb074j7yyfpk7x1jv"))))
(build-system haskell-build-system)
(inputs
`(("ghc-attoparsec" ,ghc-attoparsec)
("ghc-old-locale" ,ghc-old-locale)
("ghc-text" ,ghc-text)
("ghc-data-default-class" ,ghc-data-default-class)
("ghc-network" ,ghc-network)
("ghc-utf8-string" ,ghc-utf8-string)))
(native-inputs
`(("ghc-quickcheck" ,ghc-quickcheck)
("ghc-hspec" ,ghc-hspec)
("hspec-discover" ,hspec-discover)))
(home-page "https://github.com/vimus/libmpd-haskell")
(synopsis "Haskell client library for the Music Player Daemon")
(description "This package provides a pure Haskell client library for the
Music Player Daemon.")
(license license:expat)))
;;; haskell.scm ends here