~ruther/guix-local

4f99755142ccc270ae4103cea1ec024fceac0b45 — Paul van der Walt 10 years ago 03f6074
gnu: Add ghc-bifunctors.

* gnu/packages/haskell.scm (ghc-bifunctors): Add variable.
1 files changed, 23 insertions(+), 0 deletions(-)

M gnu/packages/haskell.scm
M gnu/packages/haskell.scm => gnu/packages/haskell.scm +23 -0
@@ 2433,6 2433,29 @@ unbounded @code{Integer} type.")
given term should not exist.")
    (license bsd-3)))

(define-public ghc-bifunctors
  (package
    (name "ghc-bifunctors")
    (version "5")
    (source
     (origin
       (method url-fetch)
       (uri (string-append
             "http://hackage.haskell.org/package/bifunctors/bifunctors-"
             version
             ".tar.gz"))
       (sha256
        (base32
         "13990xdgx0n23qgi18ghhmsywj5zkr0a5bim0g8a4nzi0cx95ps1"))))
    (build-system haskell-build-system)
    (inputs
     `(("ghc-tagged" ,ghc-tagged)
       ("ghc-semigroups" ,ghc-semigroups)))
    (home-page "http://github.com/ekmett/bifunctors/")
    (synopsis "Bifunctors for Haskell")
    (description "This package provides bifunctors for Haskell.")
    (license bsd-3)))

(define-public ghc-semigroups
  (package
    (name "ghc-semigroups")