forked from jsoo1/guix-channel
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathghc-keys.scm
37 lines (35 loc) · 1.35 KB
/
ghc-keys.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
34
35
36
37
(define-module (ghc-keys)
#: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-keys
(package
(name "ghc-keys")
(version "3.12.1")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://hackage/package/keys/keys-" version ".tar.gz"))
(sha256 (base32 "1yqm4gpshsgswx6w78z64c83gpydh6jhgslx2lnc10nzhy0s9kkz"))))
(build-system haskell-build-system)
(inputs
`(("ghc-comonad" ,ghc-comonad)
("ghc-free" ,ghc-free)
("ghc-hashable" ,ghc-hashable)
("ghc-semigroupoids" ,ghc-semigroupoids)
("ghc-semigroups" ,ghc-semigroups)
("ghc-tagged" ,ghc-tagged)
("ghc-transformers-compat" ,ghc-transformers-compat)
("ghc-unordered-containers" ,ghc-unordered-containers)))
(arguments `(#:tests? #f))
(home-page "http://github.com/ekmett/keys/")
(synopsis "Keyed functors and containers")
(description
"This package provides a bunch of ad hoc classes for accessing
parts of a container. . In practice this package is largely subsumed
by the <mirror://hackage/package/lens lens package>, but it is
maintained for now as it has much simpler dependencies.")
(license license:bsd-3)))