[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
259/272: gnu: Add ghc-linear.
From: |
Ricardo Wurmus |
Subject: |
259/272: gnu: Add ghc-linear. |
Date: |
Mon, 1 Oct 2018 06:13:58 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit d459e043c885811495088fb9d73b45b68db154de
Author: Ricardo Wurmus <address@hidden>
Date: Fri Sep 28 08:30:42 2018 +0200
gnu: Add ghc-linear.
* gnu/packages/haskell.scm (ghc-linear): New variable.
---
gnu/packages/haskell.scm | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 4be0290..8076838 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -10579,4 +10579,47 @@ expose it from another module in the hierarchy.
Haskell value or function.")
(license license:bsd-3)))
+(define-public ghc-linear
+ (package
+ (name "ghc-linear")
+ (version "1.20.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://hackage.haskell.org/package/linear/"
+ "linear-" version ".tar.gz"))
+ (sha256
+ (base32
+ "046vkvxlb0s286qr55s0c6db0rlwbm1cmlmwhrrkqbkzhfcipgay"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-adjunctions" ,ghc-adjunctions)
+ ("ghc-base-orphans" ,ghc-base-orphans)
+ ("ghc-bytes" ,ghc-bytes)
+ ("ghc-cereal" ,ghc-cereal)
+ ("ghc-distributive" ,ghc-distributive)
+ ("ghc-hashable" ,ghc-hashable)
+ ("ghc-lens" ,ghc-lens)
+ ("ghc-reflection" ,ghc-reflection)
+ ("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-semigroupoids" ,ghc-semigroupoids)
+ ("ghc-tagged" ,ghc-tagged)
+ ("ghc-transformers-compat" ,ghc-transformers-compat)
+ ("ghc-unordered-containers" ,ghc-unordered-containers)
+ ("ghc-vector" ,ghc-vector)
+ ("ghc-void" ,ghc-void)))
+ (native-inputs
+ `(("cabal-doctest" ,cabal-doctest)
+ ("ghc-doctest" ,ghc-doctest)
+ ("ghc-simple-reflect" ,ghc-simple-reflect)
+ ("ghc-test-framework" ,ghc-test-framework)
+ ("ghc-test-framework-hunit" ,ghc-test-framework-hunit)
+ ("ghc-hunit" ,ghc-hunit)))
+ (home-page "http://github.com/ekmett/linear/")
+ (synopsis "Linear algebra library for Haskell")
+ (description
+ "This package provides types and combinators for linear algebra on free
+vector spaces.")
+ (license license:bsd-3)))
+
;;; haskell.scm ends here
- 245/272: gnu: ghc-aws: Update to 0.20., (continued)
- 245/272: gnu: ghc-aws: Update to 0.20., Ricardo Wurmus, 2018/10/01
- 240/272: gnu: ghc-warp-tls: Update to 3.2.4.3., Ricardo Wurmus, 2018/10/01
- 244/272: gnu: Add ghc-tree-diff., Ricardo Wurmus, 2018/10/01
- 248/272: gnu: ghc-yesod-persistent: Update to 1.6.0., Ricardo Wurmus, 2018/10/01
- 271/272: gnu: ghc-aws: Fix build., Ricardo Wurmus, 2018/10/01
- 250/272: gnu: ghc-pandoc: Adjust tests and test dependency constraints., Ricardo Wurmus, 2018/10/01
- 254/272: gnu: ghc-yesod: Update to 1.6.0., Ricardo Wurmus, 2018/10/01
- 252/272: gnu: ghc-haddock: Update to 2.19.0.1., Ricardo Wurmus, 2018/10/01
- 269/272: gnu: ghc-wave: Fix build., Ricardo Wurmus, 2018/10/01
- 266/272: gnu: ghc-indents: Fix build., Ricardo Wurmus, 2018/10/01
- 259/272: gnu: Add ghc-linear.,
Ricardo Wurmus <=