[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/12: gnu: Add ghc-non-negative.
From: |
guix-commits |
Subject: |
02/12: gnu: Add ghc-non-negative. |
Date: |
Mon, 2 Sep 2019 23:11:43 -0400 (EDT) |
samplet pushed a commit to branch master
in repository guix.
commit 6b652f5af3ddf9d8d894d1270441ab29354cca97
Author: John Soo <address@hidden>
Date: Sun Jul 7 17:30:41 2019 -0700
gnu: Add ghc-non-negative.
* gnu/packages/haskell-xyz.scm (ghc-non-negative): New variable.
Signed-off-by: Timothy Sample <address@hidden>
---
gnu/packages/haskell-xyz.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index 8d76142..2dbafe6 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -6736,6 +6736,33 @@ making this package a full replacement for the original
newtype package,
and an alternative to newtype-th.")
(license license:bsd-3)))
+(define-public ghc-non-negative
+ (package
+ (name "ghc-non-negative")
+ (version "0.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (string-append
+ "https://hackage.haskell.org/package/non-negative/non-negative-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0f01q916dzkl1i0v15qrw9cviycki5g3fgi6x8gs45iwbzssq52n"))))
+ (build-system haskell-build-system)
+ (inputs
+ `(("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-utility-ht" ,ghc-utility-ht)
+ ("ghc-quickcheck" ,ghc-quickcheck)))
+ (home-page "https://hackage.haskell.org/package/non-negative")
+ (synopsis "Non-negative numbers class")
+ (description "This library provides a class for non-negative numbers,
+a wrapper which can turn any ordered numeric type into a member of that
+class, and a lazy number type for non-negative numbers (a generalization
+of Peano numbers).")
+ (license license:gpl3+)))
+
(define-public ghc-objectname
(package
(name "ghc-objectname")
- branch master updated (68668e9 -> 6ec2450), guix-commits, 2019/09/02
- 01/12: gnu: Add ghc-unsafe., guix-commits, 2019/09/02
- 02/12: gnu: Add ghc-non-negative.,
guix-commits <=
- 03/12: gnu: Add ghc-timeit., guix-commits, 2019/09/02
- 09/12: gnu: Add ghc-process-extras., guix-commits, 2019/09/02
- 04/12: gnu: Add ghc-storablevector., guix-commits, 2019/09/02
- 05/12: gnu: Add ghc-fmlist., guix-commits, 2019/09/02
- 06/12: gnu: Add ghc-storable-record., guix-commits, 2019/09/02
- 07/12: gnu: Add ghc-listlike., guix-commits, 2019/09/02
- 08/12: gnu: Add ghc-storable-tuple., guix-commits, 2019/09/02
- 11/12: gnu: Add ghc-js-flot., guix-commits, 2019/09/02
- 12/12: gnu: Add hoogle., guix-commits, 2019/09/02
- 10/12: gnu: Add ghc-js-jquery., guix-commits, 2019/09/02