forked from jsoo1/guix-channel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghc-pointed.scm
33 lines (32 loc) · 1.21 KB
/
ghc-pointed.scm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(define-module (ghc-pointed)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system haskell)
#:use-module (gnu packages haskell-xyz)
#:use-module (gnu packages haskell-check))
(define-public ghc-pointed
(package
(name "ghc-pointed")
(version "5.0.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://hackage/package/pointed/pointed-" version ".tar.gz"))
(sha256 (base32 "1p91a762xglckscnhpflxzav8byf49a02mli3983i4kpr2jkaimr"))))
(build-system haskell-build-system)
(inputs
`(("ghc-data-default-class" ,ghc-data-default-class)
("ghc-comonad" ,ghc-comonad)
("ghc-kan-extensions" ,ghc-kan-extensions)
("ghc-semigroupoids" ,ghc-semigroupoids)
("ghc-semigroups" ,ghc-semigroups)
("ghc-tagged" ,ghc-tagged)
("ghc-transformers-compat" ,ghc-transformers-compat)
("ghc-hashable" ,ghc-hashable)
("ghc-unordered-containers" ,ghc-unordered-containers)))
(arguments `(#:tests? #f))
(home-page "http://github.com/ekmett/pointed/")
(synopsis "Pointed and copointed data")
(description "Pointed and copointed data.")
(license license:bsd-3)))