diff options
author | Lars-Dominik Braun <lars@6xq.net> | 2021-10-25 14:28:39 +0200 |
---|---|---|
committer | Lars-Dominik Braun <lars@6xq.net> | 2021-11-02 09:32:53 +0100 |
commit | c9b3116bfcccadf306db225d2cc77912c07a4fad (patch) | |
tree | 84097c86ceed25550044ae8ec9ee33313e219754 | |
parent | 0c4d86ccdfe0dc7f54fd2d104a857d9d17cb43cb (diff) | |
download | guix-c9b3116bfcccadf306db225d2cc77912c07a4fad.tar guix-c9b3116bfcccadf306db225d2cc77912c07a4fad.tar.gz |
gnu: ghc-semigroupoids: Update to 5.3.6.
* gnu/packages/haskell-xyz.scm (ghc-semigroupoids): Update to 5.3.6.
[inputs]: Remove ghc-semigroups; add ghc-generic-deriving.
[native-inputs]: Remove cabal-doctest and ghc-doctest.
-rw-r--r-- | gnu/packages/haskell-xyz.scm | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 1dd4f94a40..0eaa654f79 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -11779,7 +11779,7 @@ class, forming lattice-like structure.") (define-public ghc-semigroupoids (package (name "ghc-semigroupoids") - (version "5.3.5") + (version "5.3.6") (source (origin (method url-fetch) @@ -11789,7 +11789,7 @@ class, forming lattice-like structure.") ".tar.gz")) (sha256 (base32 - "1c66sc9w9724xhlly9wfjhghmnnw99z9al69264i2izk7vhihbsm")))) + "0glhqc9x8i5z3bdg23xvl2lfns95msid3h3x0jksna7i6c8j869n")))) (build-system haskell-build-system) (outputs '("out" "static" "doc")) (inputs @@ -11799,13 +11799,10 @@ class, forming lattice-like structure.") ("ghc-comonad" ,ghc-comonad) ("ghc-contravariant" ,ghc-contravariant) ("ghc-distributive" ,ghc-distributive) + ("ghc-generic-deriving" ,ghc-generic-deriving) ("ghc-hashable" ,ghc-hashable) - ("ghc-semigroups" ,ghc-semigroups) ("ghc-tagged" ,ghc-tagged) ("ghc-unordered-containers" ,ghc-unordered-containers))) - (native-inputs - `(("cabal-doctest" ,cabal-doctest) - ("ghc-doctest" ,ghc-doctest))) (home-page "https://github.com/ekmett/semigroupoids") (synopsis "Semigroupoids operations for Haskell") (description "This library provides a wide array of (semi)groupoids and |