[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#55005] [PATCH 06/13] gnu: Add ghc-algebraic-graphs
From: |
Thomas Albers |
Subject: |
[bug#55005] [PATCH 06/13] gnu: Add ghc-algebraic-graphs |
Date: |
Mon, 18 Apr 2022 20:09:50 +0200 |
---
gnu/packages/haskell-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index b9b2824dc4..5352e9f0b6 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -16226,3 +16226,29 @@ (define-public ghc-optparse-simple
(description
"Simple helper functions to work with @code{ghc-optparse-applicative}.")
(license license:bsd-3)))
+
+(define-public ghc-algebraic-graphs
+ (package
+ (name "ghc-algebraic-graphs")
+ (version "0.6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+
"https://hackage.haskell.org/package/algebraic-graphs/algebraic-graphs-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32 "1d3gwyimrzcc7i2qj3iimab3wz6vicgwybhq7ac3da86b8pjlgim"))))
+ (build-system haskell-build-system)
+ (outputs '("out" "static"))
+ (native-inputs (list ghc-extra ghc-inspection-testing ghc-quickcheck))
+ (arguments
+ `(#:cabal-revision
+ ("1" "0f7ih4d0jls7399slxc3zkg38z32jm80jv74iyy42l8s6m5ya1cv")))
+ (home-page "https://github.com/snowleopard/alga")
+ (synopsis "Library for algebraic graph construction and transformation")
+ (description
+ "Library for algebraic construction and manipulation of graphs in
+Haskell.")
+ (license license:expat)))
--
2.35.1
- [bug#55005] [PATCH 11/13] gnu: Add ghc-strict-list, (continued)
[bug#55005] [PATCH 13/13] gnu: Add ghc-mod, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 10/13] gnu: Add ghc-fuzzy, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 08/13] gnu: Add ghc-record-dot-preprocessor, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 06/13] gnu: Add ghc-algebraic-graphs,
Thomas Albers <=
[bug#55005] [PATCH 05/13] gnu: Add ghc-optparse-simple, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 09/13] gnu: Add ghc-monoid-subclasses, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 12/13] gnu: Add ghc-deque, Thomas Albers, 2022/04/18
[bug#55005] [PATCH 02/13] gnu: Add ghc-direct-sqlite, Thomas Albers, 2022/04/18