From cf4ee324a502eaed687cf5d803e152745d924097 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:34 +0200 Subject: gnu: ghc-aeson-compat: Update to 0.3.10. * gnu/packages/haskell-xyz.scm (ghc-aeson-compat): Update to 0.3.10. [inputs]: Remove ghc-exceptions, ghc-semigroups, and ghc-nats. [native-inputs]: Add ghc-base-orphans. --- gnu/packages/haskell-xyz.scm | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index aa7e3153da..d87c457380 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -212,7 +212,7 @@ for Haskell.") (define-public ghc-aeson-compat (package (name "ghc-aeson-compat") - (version "0.3.9") + (version "0.3.10") (source (origin (method url-fetch) @@ -221,30 +221,25 @@ for Haskell.") "aeson-compat-" version ".tar.gz")) (sha256 (base32 - "1j13gykv4ryvmr14w5blz0nnpdb4p0hpa27wahw3mhb1lwdr8hz0")))) + "0ia3qfdpbrzhwwg4ywpdwca0z1m85k081pcz6jh1sx8qjsvcr71w")))) (build-system haskell-build-system) - (arguments - `(#:cabal-revision - ("7" "15aflmqs5y0yg2p4042yvnhxyp11ndlihs1dxj21bxfdzd1bbkrn"))) (inputs `(("ghc-base-compat" ,ghc-base-compat) ("ghc-aeson" ,ghc-aeson) ("ghc-attoparsec" ,ghc-attoparsec) - ("ghc-attoparsec" ,ghc-attoparsec-iso8601) - ("ghc-exceptions" ,ghc-exceptions) + ("ghc-attoparsec-iso8601" ,ghc-attoparsec-iso8601) ("ghc-hashable" ,ghc-hashable) ("ghc-scientific" ,ghc-scientific) ("ghc-time-locale-compat" ,ghc-time-locale-compat) ("ghc-unordered-containers" ,ghc-unordered-containers) ("ghc-vector" ,ghc-vector) - ("ghc-tagged" ,ghc-tagged) - ("ghc-semigroups" ,ghc-semigroups) - ("ghc-nats" ,ghc-nats))) + ("ghc-tagged" ,ghc-tagged))) (native-inputs `(("ghc-tasty" ,ghc-tasty) ("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck) ("ghc-quickcheck" ,ghc-quickcheck) - ("ghc-quickcheck-instances" ,ghc-quickcheck-instances))) + ("ghc-quickcheck-instances" ,ghc-quickcheck-instances) + ("ghc-base-orphans" ,ghc-base-orphans))) (home-page "https://github.com/phadej/aeson-compat") (synopsis "Compatibility layer for ghc-aeson") (description "This Haskell package provides compatibility layer for -- cgit v1.2.3 From 8216e89c8bdcee6e6bde27efe6620d45b4222318 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:34 +0200 Subject: gnu: ghc-async: Update to 2.2.4. * gnu/packages/haskell-xyz.scm (ghc-async): Update to 2.2.4. [inputs]: Remove ghc-hunit, ghc-test-framework, and ghc-test-framework-hunit. [native-inputs]: Add ghc-hunit, ghc-test-framework, and ghc-test-framework-hunit. --- gnu/packages/haskell-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d87c457380..561080de36 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -501,7 +501,7 @@ similar operations (e.g. @code{Either}, @code{These}).") (define-public ghc-async (package (name "ghc-async") - (version "2.2.3") + (version "2.2.4") (source (origin (method url-fetch) @@ -511,11 +511,12 @@ similar operations (e.g. @code{Either}, @code{These}).") ".tar.gz")) (sha256 (base32 - "0p4k6872pj0aykbnc19ilam1h8fgskxlwpyg5qisaivr0fhg6yj6")))) + "09d7w3krfhnmf9dp6yffa9wykinhw541wibnjgnlyv77w1dzhka8")))) (build-system haskell-build-system) (inputs - `(("ghc-hashable" ,ghc-hashable) - ("ghc-hunit" ,ghc-hunit) + `(("ghc-hashable" ,ghc-hashable))) + (native-inputs + `(("ghc-hunit" ,ghc-hunit) ("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit))) (home-page "https://github.com/simonmar/async") -- cgit v1.2.3 From 28ba576ff564c4cd4565a2b1b92607e5d509cd62 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:35 +0200 Subject: gnu: ghc-blaze-builder: Update to 0.4.2.2. * gnu/packages/haskell-xyz.scm (ghc-blaze-builder): Update to 0.4.2.2. [inputs]: Remove ghc-utf8-string; add ghc-bytestring-builder and ghc-semigroups. [native-inputs]: Add ghc-hunit, ghc-quickcheck, ghc-test-framework, ghc-test-framework-hunit, ghc-test-framework-quickcheck2, and ghc-utf8-string. --- gnu/packages/haskell-xyz.scm | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 561080de36..67e5606968 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -1129,7 +1129,7 @@ functions.") (define-public ghc-blaze-builder (package (name "ghc-blaze-builder") - (version "0.4.2.1") + (version "0.4.2.2") (source (origin (method url-fetch) @@ -1139,11 +1139,18 @@ functions.") ".tar.gz")) (sha256 (base32 - "01hbx82djckj2x74sk9kc79111djq7f2af3zl5i21y9zkjy8js3f")))) + "0rxg6vjr0ji6g1nngrqpl4k1q9w66fwkhld9cqm5yfhx0a69kp1c")))) (build-system haskell-build-system) - (arguments `(#:tests? #f)) ; FIXME: Missing test libraries. (inputs - `(("ghc-utf8-string" ,ghc-utf8-string))) + `(("ghc-bytestring-builder" ,ghc-bytestring-builder) + ("ghc-semigroups" ,ghc-semigroups))) + (native-inputs + `(("ghc-hunit" ,ghc-hunit) + ("ghc-quickcheck" ,ghc-quickcheck) + ("ghc-test-framework" ,ghc-test-framework) + ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) + ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2) + ("ghc-utf8-string" ,ghc-utf8-string))) (home-page "https://github.com/lpsmith/blaze-builder") (synopsis "Efficient buffered output") (description "This library provides an implementation of the older -- cgit v1.2.3 From 4580d2d3802881ba1406cda2c62195179c125e0e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:35 +0200 Subject: gnu: ghc-bytestring-lexing: Update to 0.5.0.7. * gnu/packages/haskell-xyz.scm (ghc-bytestring-lexing): Update to 0.5.0.7. [native-inputs]: Add ghc-tasty, ghc-tasty-quickcheck, and ghc-tasty-smallcheck. --- gnu/packages/haskell-xyz.scm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 67e5606968..6b1f04b465 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -1370,7 +1370,7 @@ Compatibility package for older packages.") (define-public ghc-bytestring-lexing (package (name "ghc-bytestring-lexing") - (version "0.5.0.2") + (version "0.5.0.7") (source (origin (method url-fetch) @@ -1379,8 +1379,12 @@ Compatibility package for older packages.") version ".tar.gz")) (sha256 (base32 - "0wrzniawhgpphc6yx1v972gyqxdbv0pizaz9bafahrshyb9svy81")))) + "1p7i2haix4m11an3djaq65cnd293hzwqy4cd2i8jxzcl248pk6iy")))) (build-system haskell-build-system) + (native-inputs + `(("ghc-tasty" ,ghc-tasty) + ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck) + ("ghc-tasty-smallcheck" ,ghc-tasty-smallcheck))) (home-page "http://code.haskell.org/~wren/") (synopsis "Parse and produce literals from strict or lazy bytestrings") (description -- cgit v1.2.3 From d698c672556edd218015d605da099d9486cb26d7 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:35 +0200 Subject: gnu: ghc-cassava-megaparsec: Update to 2.0.4. * gnu/packages/haskell-xyz.scm (ghc-cassava-megaparsec): Update to 2.0.4. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 6b1f04b465..529cb29a65 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -1652,7 +1652,7 @@ very simple example of encoding CSV data: (define-public ghc-cassava-megaparsec (package (name "ghc-cassava-megaparsec") - (version "2.0.2") + (version "2.0.4") (source (origin (method url-fetch) @@ -1663,7 +1663,7 @@ very simple example of encoding CSV data: ".tar.gz")) (sha256 (base32 - "03x1462agrfdagklp8c89b8p4z2hd8nbf6d3895sz770zjkawda7")))) + "0pg9z38jmrylbj683b6pf7psipp7lrdq6mn1hbj8v2gj5lh8yf8n")))) (build-system haskell-build-system) (inputs `(("ghc-cassava" ,ghc-cassava) -- cgit v1.2.3 From c75122cfc047a46032177007878950a20e631405 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:35 +0200 Subject: gnu: ghc-esqueleto: Update to 3.5.3.0. * gnu/packages/haskell-xyz.scm (ghc-esqueleto): Update to 3.5.3.0. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 529cb29a65..cababc99c0 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -4066,7 +4066,7 @@ directly uses the type system, rather than out-of-band exceptions.") (define-public ghc-esqueleto (package (name "ghc-esqueleto") - (version "3.5.2.2") + (version "3.5.3.0") (source (origin (method url-fetch) @@ -4074,7 +4074,7 @@ directly uses the type system, rather than out-of-band exceptions.") "esqueleto/esqueleto-" version ".tar.gz")) (sha256 (base32 - "19m4lzxhjakf1zbsvwa0xmhcln1wb8ydbsnfyhiwhgvryrhvw9ga")))) + "0z3cf49sha6q965qw2m08jfmb91ki2rsdpnr7l39lka5b4ffxjlz")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) ; TODO: Cannot connect to mysql server. -- cgit v1.2.3 From c62fdba44d3a41fcdd09dde4282661296b6997ca Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:36 +0200 Subject: gnu: ghc-hpack: Update to 0.34.5. * gnu/packages/haskell-xyz.scm (ghc-hpack): Update to 0.34.5. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index cababc99c0..e80f20b0d0 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -6071,7 +6071,7 @@ representations of current time.") (define-public ghc-hpack (package (name "ghc-hpack") - (version "0.34.4") + (version "0.34.5") (source (origin (method url-fetch) @@ -6079,7 +6079,7 @@ representations of current time.") "hpack-" version ".tar.gz")) (sha256 (base32 - "1xszy00al5zzga64gh7nvgqc93242f61kqy8lb09jkm98a8fs4bl")))) + "0gmm6jgi1sgyilphww6apq1x04grqznm7xhyb7g1rj5j7my40ws2")))) (build-system haskell-build-system) (inputs `(("ghc-aeson" ,ghc-aeson) -- cgit v1.2.3 From f4f5fca49ca36553e2eb0c06df26f26db11df418 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:36 +0200 Subject: gnu: ghc-hslua: Update to 1.3.0.2. * gnu/packages/haskell-xyz.scm (ghc-hslua): Update to 1.3.0.2. [inputs]: Remove ghc-exceptions and ghc-fail; add ghc-base-compat. [native-inputs]: Remove ghc-tasty-expected-failure; add ghc-fail and ghc-semigroups. --- gnu/packages/haskell-xyz.scm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index e80f20b0d0..f166969de1 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -6197,29 +6197,29 @@ handler built in.") (define-public ghc-hslua (package (name "ghc-hslua") - (version "1.3.0.1") + (version "1.3.0.2") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" "hslua/hslua-" version ".tar.gz")) (sha256 (base32 - "1mz8zk13dhgaf24hmmjqnn5hcln96iw73mcjwjilag8388wq72k7")))) + "0p39xm0mmxzs5x6aim11qkb7npn0d9h7li2kwfhry0dijd1vm18i")))) (build-system haskell-build-system) (arguments `(#:configure-flags '("-fsystem-lua") #:extra-directories ("lua"))) (inputs `(("lua" ,lua) - ("ghc-exceptions" ,ghc-exceptions) - ("ghc-fail" ,ghc-fail))) + ("ghc-base-compat" ,ghc-base-compat))) (native-inputs `(("ghc-tasty" ,ghc-tasty) - ("ghc-tasty-expected-failure" ,ghc-tasty-expected-failure) ("ghc-tasty-hunit" ,ghc-tasty-hunit) ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck) ("ghc-quickcheck" ,ghc-quickcheck) - ("ghc-quickcheck-instances" ,ghc-quickcheck-instances))) + ("ghc-quickcheck-instances" ,ghc-quickcheck-instances) + ("ghc-fail" ,ghc-fail) + ("ghc-semigroups" ,ghc-semigroups))) (home-page "https://hackage.haskell.org/package/hslua") (synopsis "Lua language interpreter embedding in Haskell") (description -- cgit v1.2.3 From 607a5c4754d757051db76e656a066ce4573d40ea Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:36 +0200 Subject: gnu: ghc-ipynb: Update to 0.1.0.2. * gnu/packages/haskell-xyz.scm (ghc-ipynb): Update to 0.1.0.2. [native-inputs]: Remove ghc-aeson-diff and ghc-vector. --- gnu/packages/haskell-xyz.scm | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index f166969de1..6d5d98cee3 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -6798,7 +6798,7 @@ removed. Both IPv4 and IPv6 are supported.") (define-public ghc-ipynb (package (name "ghc-ipynb") - (version "0.1.0.1") + (version "0.1.0.2") (source (origin (method url-fetch) @@ -6806,7 +6806,7 @@ removed. Both IPv4 and IPv6 are supported.") "ipynb/ipynb-" version ".tar.gz")) (sha256 (base32 - "0lwpz0ip7r1rxkirqb6p48ql19fzamqkrnf3khx7bfl5wsxi6yrb")))) + "0qky4l5aaiq7ypwbxh0mr7s572290fi596f18dg68qpyzc49a9kx")))) (build-system haskell-build-system) (inputs `(("ghc-unordered-containers" ,ghc-unordered-containers) @@ -6816,10 +6816,8 @@ removed. Both IPv4 and IPv6 are supported.") (native-inputs `(("ghc-tasty" ,ghc-tasty) ("ghc-tasty-hunit" ,ghc-tasty-hunit) - ("ghc-aeson-diff" ,ghc-aeson-diff) ("ghc-microlens-aeson" ,ghc-microlens-aeson) - ("ghc-microlens" ,ghc-microlens) - ("ghc-vector" ,ghc-vector))) + ("ghc-microlens" ,ghc-microlens))) (home-page "https://hackage.haskell.org/package/ipynb") (synopsis "Data structure for working with Jupyter notebooks") (description "This library defines a data structure for representing -- cgit v1.2.3 From 6a99db4f1520f63b0a92f1ec5ec7f6903d370495 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:36 +0200 Subject: gnu: ghc-juicypixels: Update to 3.3.6. * gnu/packages/haskell-xyz.scm (ghc-juicypixels): Update to 3.3.6. [inputs]: Remove ghc-mmap. --- gnu/packages/haskell-xyz.scm | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 6d5d98cee3..0ac47674b6 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -6877,7 +6877,7 @@ Notation, JSON} is a lightweight data-interchange format.") (define-public ghc-juicypixels (package (name "ghc-juicypixels") - (version "3.3.5") + (version "3.3.6") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" @@ -6885,14 +6885,13 @@ Notation, JSON} is a lightweight data-interchange format.") version ".tar.gz")) (sha256 (base32 - "0yj4jyf56r3c1r3v1lkx8i8ll0jl8g8y2yv87sa4hwgck52199gc")))) + "1f8giivsqxma19ax78dr7j4gir12iyfqn2mlsd27zzl8dn7dy6w1")))) (build-system haskell-build-system) (outputs '("out" "static" "doc")) (inputs `(("ghc-zlib" ,ghc-zlib) ("ghc-vector" ,ghc-vector) - ("ghc-primitive" ,ghc-primitive) - ("ghc-mmap" ,ghc-mmap))) + ("ghc-primitive" ,ghc-primitive))) (home-page "https://github.com/Twinside/Juicy.Pixels") (synopsis "Picture loading and serialization library") (description -- cgit v1.2.3 From d9641d4f7bf80c7a0b555a661cd1753d4927d6c1 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:37 +0200 Subject: gnu: ghc-lzma-conduit: Update to 1.2.2. * gnu/packages/haskell-xyz.scm (ghc-lzma-conduit): Update to 1.2.2. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 0ac47674b6..2474199df4 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -7583,7 +7583,7 @@ monadic incremental interface is provided as well.") (define-public ghc-lzma-conduit (package (name "ghc-lzma-conduit") - (version "1.2.1") + (version "1.2.2") (source (origin (method url-fetch) @@ -7591,7 +7591,7 @@ monadic incremental interface is provided as well.") "lzma-conduit-" version ".tar.gz")) (sha256 (base32 - "0hm72da7xk9l3zxjh274yg444vf405djxqbkf3q3p2qhicmxlmg9")))) + "1z6q16hzp2r5a4gdbg9akky5l9bfarzzhzswrgvh0v28ax400whb")))) (build-system haskell-build-system) (inputs `(("ghc-conduit" ,ghc-conduit) -- cgit v1.2.3 From eba970f1b6f089d28fb4bc07f5cee2e5905bf8b6 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:37 +0200 Subject: gnu: ghc-mono-traversable: Update to 1.0.15.3. * gnu/packages/haskell-xyz.scm (ghc-mono-traversable): Update to 1.0.15.3. [native-inputs]: Remove ghc-semigroups. --- gnu/packages/haskell-xyz.scm | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 2474199df4..e21232801b 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -8300,7 +8300,7 @@ the @code{mtl-tf} package.") (define-public ghc-mono-traversable (package (name "ghc-mono-traversable") - (version "1.0.15.1") + (version "1.0.15.3") (source (origin (method url-fetch) @@ -8309,7 +8309,7 @@ the @code{mtl-tf} package.") "mono-traversable-" version ".tar.gz")) (sha256 (base32 - "1psxhfjmpv3y54wy8f8dwa43finlj7aw2mry67pg521gxmwmppy2")))) + "1dvlp7r7r1lc3fxkwaz68f1nffg83240q8a989x24x1x67rj1clq")))) (build-system haskell-build-system) (outputs '("out" "static" "doc")) (inputs `(("ghc-unordered-containers" ,ghc-unordered-containers) @@ -8320,7 +8320,6 @@ the @code{mtl-tf} package.") (native-inputs `(("ghc-hspec" ,ghc-hspec) ("ghc-hunit" ,ghc-hunit) ("ghc-quickcheck" ,ghc-quickcheck) - ("ghc-semigroups" ,ghc-semigroups) ("ghc-foldl" ,ghc-foldl))) (home-page "https://github.com/snoyberg/mono-traversable") (synopsis "Haskell classes for mapping, folding, and traversing monomorphic -- cgit v1.2.3 From 0bf782d58582d0c68c39b7be0a3f0354e65f3f9a Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:37 +0200 Subject: gnu: ghc-operational: Update to 0.2.4.0. * gnu/packages/haskell-xyz.scm (ghc-operational): Update to 0.2.4.0. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index e21232801b..967a7743b6 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -8980,7 +8980,7 @@ found at runtime, a userError is thrown.") (define-public ghc-operational (package (name "ghc-operational") - (version "0.2.3.5") + (version "0.2.4.0") (source (origin (method url-fetch) @@ -8988,7 +8988,7 @@ found at runtime, a userError is thrown.") "operational-" version ".tar.gz")) (sha256 (base32 - "1x2abg2q9d26h1vzj40r6k7k3gqgappbs4g9d853vvg77837km4i")))) + "1hwmwbsxzwv68b39rv4gn3da6irv8zm89gqrkc3rdsgwi5ziyn3i")))) (build-system haskell-build-system) (inputs `(("ghc-random" ,ghc-random))) -- cgit v1.2.3 From 2ee674ff3d9028bf93f6ed92ea9a6fc217e19715 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:37 +0200 Subject: gnu: ghc-emojis: Update to 0.1.2. * gnu/packages/haskell-xyz.scm (ghc-emojis): Update to 0.1.2. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 967a7743b6..a15cb2700c 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -9139,7 +9139,7 @@ to other formats.") (define-public ghc-emojis (package (name "ghc-emojis") - (version "0.1") + (version "0.1.2") (source (origin (method url-fetch) @@ -9147,7 +9147,7 @@ to other formats.") "https://hackage.haskell.org/package/emojis/" "emojis-" version ".tar.gz")) (sha256 - (base32 "1c6zkj9gmk1y90gbdrn50hyp7mw1mggzhnr2khqd728ryipw60ss")))) + (base32 "09x2xrppwypi369y7rzf3ln2g7c3g9qfckn2gydxpfzglcp9rziw")))) (build-system haskell-build-system) (native-inputs `(("ghc-hunit" ,ghc-hunit))) -- cgit v1.2.3 From 546d057833954e2cfbe6d526f1a6a0cbe89fbc2d Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:38 +0200 Subject: gnu: ghc-doclayout: Update to 0.3.1.1. * gnu/packages/haskell-xyz.scm (ghc-doclayout): Update to 0.3.1.1. [inputs]: Add ghc-emojis. [native-inputs]: Add ghc-tasty-quickcheck. --- gnu/packages/haskell-xyz.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index a15cb2700c..83f2568f72 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -9266,7 +9266,7 @@ Implementations using both of these examples are provided.") (define-public ghc-doclayout (package (name "ghc-doclayout") - (version "0.3.0.2") + (version "0.3.1.1") (source (origin (method url-fetch) @@ -9274,14 +9274,16 @@ Implementations using both of these examples are provided.") "https://hackage.haskell.org/package/doclayout/" "doclayout-" version ".tar.gz")) (sha256 - (base32 "1hfqagf5rmdjjx3xzx153d769b2vwarmyx7k7cwh872cgasndb3q")))) + (base32 "1p9kgjlf7y4p1symvkwndgs4lvyw2c45bsgld09y9r4aiqbhdrxp")))) (build-system haskell-build-system) (inputs - `(("ghc-safe" ,ghc-safe))) + `(("ghc-safe" ,ghc-safe) + ("ghc-emojis" ,ghc-emojis))) (native-inputs `(("ghc-tasty" ,ghc-tasty) ("ghc-tasty-golden" ,ghc-tasty-golden) - ("ghc-tasty-hunit" ,ghc-tasty-hunit))) + ("ghc-tasty-hunit" ,ghc-tasty-hunit) + ("ghc-tasty-quickcheck" ,ghc-tasty-quickcheck))) (home-page "https://github.com/jgm/doclayout") (synopsis "Pretty-printing library for laying out text documents") (description -- cgit v1.2.3 From 8614121bdf6a8235aff1c7294cd74d309805650e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:38 +0200 Subject: gnu: ghc-pandoc-types: Update to 1.22.1. * gnu/packages/haskell-xyz.scm (ghc-pandoc-types): Update to 1.22.1. [inputs]: Remove ghc-string-qq. [native-inputs]: Add ghc-string-qq. --- gnu/packages/haskell-xyz.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 83f2568f72..491c3dc9b1 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -9514,7 +9514,7 @@ getDataFileName name = do (define-public ghc-pandoc-types (package (name "ghc-pandoc-types") - (version "1.22") + (version "1.22.1") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" @@ -9522,7 +9522,7 @@ getDataFileName name = do version ".tar.gz")) (sha256 (base32 - "0kr5n9yw59513pw2rjc65qs55iq0prn16prk4781arqdh7g7a09q")))) + "0z2j306jsiriwhib0201hsllwyck7qcvqci5c25frwsmknr3mls2")))) (build-system haskell-build-system) (arguments `(#:phases @@ -9546,13 +9546,13 @@ version = Version [~a] [] #t))))) (inputs `(("ghc-syb" ,ghc-syb) - ("ghc-aeson" ,ghc-aeson) - ("ghc-string-qq" ,ghc-string-qq))) + ("ghc-aeson" ,ghc-aeson))) (native-inputs `(("ghc-quickcheck" ,ghc-quickcheck) ("ghc-test-framework" ,ghc-test-framework) ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) ("ghc-test-framework-quickcheck2" ,ghc-test-framework-quickcheck2) + ("ghc-string-qq" ,ghc-string-qq) ("ghc-hunit" ,ghc-hunit))) (home-page "https://pandoc.org") (synopsis "Types for representing a structured document") -- cgit v1.2.3 From 254f201b2e221634e4f916ae7d5965c225115ff4 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:38 +0200 Subject: gnu: ghc-persistent: Update to 2.13.2.1. * gnu/packages/haskell-xyz.scm (ghc-persistent): Update to 2.13.2.1. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 491c3dc9b1..43af6ca92c 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -9835,7 +9835,7 @@ syntax and semantics as Perl 5.") (define-public ghc-persistent (package (name "ghc-persistent") - (version "2.13.1.2") + (version "2.13.2.1") (source (origin (method url-fetch) @@ -9844,7 +9844,7 @@ syntax and semantics as Perl 5.") "persistent-" version ".tar.gz")) (sha256 (base32 - "09si4h64i9drqr80a2sxpxhmsinacqx9bvsc3jah5zlm915q092y")))) + "13lp9i94f57qhifdmr1vnsrra34526f7kqa1sybcaj2jh2v3q85k")))) (build-system haskell-build-system) (inputs `(("ghc-aeson" ,ghc-aeson) -- cgit v1.2.3 From c19a1b00d34e2cc231747b401f5d1b9bae20f16f Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:38 +0200 Subject: gnu: ghc-prettyprinter: Update to 1.7.1. * gnu/packages/haskell-xyz.scm (ghc-prettyprinter): Update to 1.7.1. --- gnu/packages/haskell-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 43af6ca92c..1d6a5a5fa8 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -10205,16 +10205,16 @@ types.") (define-public ghc-prettyprinter (package (name "ghc-prettyprinter") - (version "1.7.0") + (version "1.7.1") (source (origin (method url-fetch) (uri (string-append - "mirror://hackage/package/prettyprinter/prettyprinter-" + "https://hackage.haskell.org/package/prettyprinter/prettyprinter-" version ".tar.gz")) (sha256 - (base32 "19z04sn0kqxgwcyfn5igjmbxw13xsb3mdhdidkb3kzswib78f6sr")))) + (base32 "0i8b3wjjpdvp5b857j065jwyrpgcnzgk75imrj7i3yhl668acvjy")))) (build-system haskell-build-system) (native-inputs `(("ghc-doctest" ,ghc-doctest) -- cgit v1.2.3 From f50c716ac267f8a9cbf1f6e4dc8f4ff58d3b9a08 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:39 +0200 Subject: gnu: ghc-prettyprinter-ansi-terminal: Update to 1.1.3. * gnu/packages/haskell-xyz.scm (ghc-prettyprinter-ansi-terminal): Update to 1.1.3. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 1d6a5a5fa8..aff343f4a6 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -10236,7 +10236,7 @@ clashes, @code{Text}-based, extensible.") (define-public ghc-prettyprinter-ansi-terminal (package (name "ghc-prettyprinter-ansi-terminal") - (version "1.1.2") + (version "1.1.3") (source (origin (method url-fetch) @@ -10244,7 +10244,7 @@ clashes, @code{Text}-based, extensible.") "https://hackage.haskell.org/package/prettyprinter-ansi-terminal/" "prettyprinter-ansi-terminal-" version ".tar.gz")) (sha256 - (base32 "168p5b7fzqs0g8ld26d3k78afgdx4r21dv0hw8ka2c08p4w76sz2")))) + (base32 "1cqxbcmy9ykk4pssq5hp6h51g2h547zfz549awh0c1fni8q3jdw1")))) (build-system haskell-build-system) (inputs `(("ghc-ansi-terminal" ,ghc-ansi-terminal) -- cgit v1.2.3 From 0c4d86ccdfe0dc7f54fd2d104a857d9d17cb43cb Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:39 +0200 Subject: gnu: ghc-regex-pcre-builtin: Update to 0.95.2.3.8.44. * gnu/packages/haskell-xyz.scm (ghc-regex-pcre-builtin): Update to 0.95.2.3.8.44. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index aff343f4a6..1dd4f94a40 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -11021,7 +11021,7 @@ expressions.") (define-public ghc-regex-pcre-builtin (package (name "ghc-regex-pcre-builtin") - (version "0.95.2.3.8.43") + (version "0.95.2.3.8.44") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" @@ -11029,7 +11029,7 @@ expressions.") version ".tar.gz")) (sha256 (base32 - "02c6vzxcy1zkqwy6w4dsc97xvvdwlh8xr7imrlx2qs2521rvswr7")))) + "0pn55ssrwr05c9sa9jvp0knvzjksz04wn3pmzf5dz4xgbyjadkna")))) (build-system haskell-build-system) (inputs `(("ghc-regex-base" ,ghc-regex-base))) -- cgit v1.2.3 From c9b3116bfcccadf306db225d2cc77912c07a4fad Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:39 +0200 Subject: 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. --- gnu/packages/haskell-xyz.scm | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') 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 -- cgit v1.2.3 From 7513a596f9e90c6843813d8a6174335c1b618144 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:40 +0200 Subject: gnu: ghc-stm-chans: Update to 3.0.0.6. * gnu/packages/haskell-xyz.scm (ghc-stm-chans): Update to 3.0.0.6. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 0eaa654f79..cc8c273c18 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -12470,7 +12470,7 @@ and regression and autocorrelation analysis. (define-public ghc-stm-chans (package (name "ghc-stm-chans") - (version "3.0.0.4") + (version "3.0.0.6") (source (origin (method url-fetch) @@ -12479,7 +12479,7 @@ and regression and autocorrelation analysis. "stm-chans-" version ".tar.gz")) (sha256 (base32 - "0f27sp09yha43xk9q55sc185jyjs5h7gq2dhsyx6bm9kz9dzqi13")))) + "04hafqjq8ngvhcavkfx88a0zky8yc7i18q2n9ajav03kns1kwvpa")))) (build-system haskell-build-system) (home-page "https://hackage.haskell.org/package/stm-chans") (synopsis "Additional types of channels for ghc-stm") -- cgit v1.2.3 From d13cb99e1d370ea36c19f509f5ca8f3d7a147722 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:40 +0200 Subject: gnu: ghc-texmath: Update to 0.12.3.2. * gnu/packages/haskell-xyz.scm (ghc-texmath): Update to 0.12.3.2. [inputs]: Remove ghc-temporary and ghc-utf8-string. [native-inputs]: Add ghc-temporary and ghc-utf8-string. --- gnu/packages/haskell-xyz.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index cc8c273c18..abb945ab47 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -13199,23 +13199,24 @@ dependency.") (define-public ghc-texmath (package (name "ghc-texmath") - (version "0.12.3.1") + (version "0.12.3.2") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" "texmath/texmath-" version ".tar.gz")) (sha256 (base32 - "1qyiihb9h7w7074p495yd4s8dj9adz0dy865gyp822z69jvmkcki")))) + "1d9r3na7hmkgr0j63fs50ssll506l1wyqhw0dpap7jk0rdz8pv6n")))) (build-system haskell-build-system) (inputs `(("ghc-syb" ,ghc-syb) ("ghc-network-uri" ,ghc-network-uri) ("ghc-split" ,ghc-split) - ("ghc-temporary" ,ghc-temporary) - ("ghc-utf8-string" ,ghc-utf8-string) ("ghc-xml" ,ghc-xml) ("ghc-pandoc-types" ,ghc-pandoc-types))) + (native-inputs + `(("ghc-temporary" ,ghc-temporary) + ("ghc-utf8-string" ,ghc-utf8-string))) (home-page "https://github.com/jgm/texmath") (synopsis "Conversion between formats used to represent mathematics") (description -- cgit v1.2.3 From 311f4be462d9eb1c6c82103e0e00119414edd7b1 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:40 +0200 Subject: gnu: ghc-tldr: Update to 0.9.2. * gnu/packages/haskell-xyz.scm (ghc-tldr): Update to 0.9.2. [inputs]: Add ghc-attoparsec. --- gnu/packages/haskell-xyz.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index abb945ab47..232783b8c7 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -13733,7 +13733,7 @@ objects from the timezone-series package.") (define-public ghc-tldr (package (name "ghc-tldr") - (version "0.9.1") + (version "0.9.2") (source (origin (method url-fetch) @@ -13743,10 +13743,11 @@ objects from the timezone-series package.") ".tar.gz")) (sha256 (base32 - "0xgj3mf51iv68fhgyrjvxfmzrbcwnk7siaynm213x0kgcyvkwbz0")))) + "1yypb9zhsj9ks7bbw2sayqv3rn9y8z3w5p1xmsnwb4w99dqmvcx5")))) (build-system haskell-build-system) (inputs `(("ghc-ansi-terminal" ,ghc-ansi-terminal) + ("ghc-attoparsec" ,ghc-attoparsec) ("ghc-cmark" ,ghc-cmark) ("ghc-http-conduit" ,ghc-http-conduit) ("ghc-optparse-applicative" ,ghc-optparse-applicative) -- cgit v1.2.3 From 26ab2aacabaa9571cdef1a97cd7d805ed09a6fec Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:40 +0200 Subject: gnu: ghc-tree-diff: Update to 0.2.1. * gnu/packages/haskell-xyz.scm (ghc-tree-diff): Update to 0.2.1. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 232783b8c7..d485fd56e0 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -13877,7 +13877,7 @@ but also need those types.") (define-public ghc-tree-diff (package (name "ghc-tree-diff") - (version "0.2") + (version "0.2.1") (source (origin (method url-fetch) @@ -13887,7 +13887,7 @@ but also need those types.") ".tar.gz")) (sha256 (base32 - "1ny7mi0n8cyb65q9ihbnm2gxiyya888dw2c4y0hjy8k882wdhf0x")))) + "0bybi4qp7nj9117yza5qqgw2f7s6rk3i7q642jqd7sdn3bx5cnap")))) (build-system haskell-build-system) (arguments `(#:cabal-revision -- cgit v1.2.3 From 2428ab7527e91bba02743a19c1e8ce29b28e553d Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:40 +0200 Subject: gnu: ghc-typed-process: Update to 0.2.6.3. * gnu/packages/haskell-xyz.scm (ghc-typed-process): Update to 0.2.6.3. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d485fd56e0..b83628e9d8 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -14047,7 +14047,7 @@ similar functionality.") (define-public ghc-typed-process (package (name "ghc-typed-process") - (version "0.2.6.1") + (version "0.2.6.3") (source (origin (method url-fetch) @@ -14056,7 +14056,7 @@ similar functionality.") version ".tar.gz")) (sha256 (base32 - "0w4c76qln49967nnhf7f1zj3gbdfqp2qgf5ym8svhqyhp5gh61ws")))) + "071mw4yv4xr5n82si33qbcqcxvcr7h56zlyd8gmsfrsdnacbq47k")))) (build-system haskell-build-system) (inputs `(("ghc-async" ,ghc-async) -- cgit v1.2.3 From 388f8f033e39c78c7f62ef46f991b56a6071c157 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:41 +0200 Subject: gnu: ghc-vector: Update to 0.12.3.1. * gnu/packages/haskell-xyz.scm (ghc-vector): Update to 0.12.3.1. [inputs]: Remove ghc-random and ghc-quickcheck. --- gnu/packages/haskell-xyz.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index b83628e9d8..d034f92773 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -14683,7 +14683,7 @@ representing a store for a single element.") (define-public ghc-vector (package (name "ghc-vector") - (version "0.12.3.0") + (version "0.12.3.1") (outputs '("out" "static" "doc")) (source (origin @@ -14694,7 +14694,7 @@ representing a store for a single element.") ".tar.gz")) (sha256 (base32 - "00xp86yad3yv4ja4q07gkmmcf7iwpcnzkkaf91zkx9nxb981iy0m")))) + "0dczbcisxhhix859dng5zhxkn3xvlnllsq60apqzvmyl5g056jpv")))) (build-system haskell-build-system) ;; FIXME: To simplify upgrading all Haskell packages, we leave the tests ;; disabled for now. @@ -14702,8 +14702,6 @@ representing a store for a single element.") `(#:tests? #f)) (inputs `(("ghc-primitive" ,ghc-primitive) - ("ghc-random" ,ghc-random) - ("ghc-quickcheck" ,ghc-quickcheck) ;; ("ghc-hunit" ,ghc-hunit) ;; ("ghc-test-framework" ,ghc-test-framework) ;; ("ghc-test-framework-hunit" ,ghc-test-framework-hunit) -- cgit v1.2.3 From 90d4d0d739e0cac336daabe774d2588c63cd972a Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:41 +0200 Subject: gnu: ghc-x11: Update to 1.10.2. * gnu/packages/haskell-xyz.scm (ghc-x11): Update to 1.10.2. [inputs]: Remove ghc-data-default; add ghc-data-default-class. --- gnu/packages/haskell-xyz.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index d034f92773..81d0352b3a 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -15132,14 +15132,14 @@ word expansion like a posix-shell.") (define-public ghc-x11 (package (name "ghc-x11") - (version "1.10.1") + (version "1.10.2") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/X11/" "X11-" version ".tar.gz")) (sha256 - (base32 "13a0qf8rwn1s43wcl39f1pcq3h1kw1ddfq205j1ry0j3yafnazxg")))) + (base32 "1ip207l97s8nw4daxp9s254agk8f0wibpf0prx0n695klqyn8bz1")))) (build-system haskell-build-system) (arguments `(#:extra-directories @@ -15149,7 +15149,7 @@ word expansion like a posix-shell.") ("libxrandr" ,libxrandr) ("libxinerama" ,libxinerama) ("libxscrnsaver" ,libxscrnsaver) - ("ghc-data-default" ,ghc-data-default))) + ("ghc-data-default-class" ,ghc-data-default-class))) (home-page "https://github.com/haskell-pkg-janitors/X11") (synopsis "Bindings to the X11 graphics library") (description -- cgit v1.2.3 From 4bed512ee1918802c038d698b76d6ef6cb68995e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:41 +0200 Subject: gnu: ghc-yaml: Update to 0.11.7.0. * gnu/packages/haskell-xyz.scm (ghc-yaml): Update to 0.11.7.0. [inputs]: Remove ghc-semigroups, ghc-temporary, ghc-enclosed-exceptions, and ghc-base-compat; add ghc-optparse-applicative. [native-inputs]: Add ghc-base-compat and ghc-temporary. --- gnu/packages/haskell-xyz.scm | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 81d0352b3a..8745cc2289 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -15305,14 +15305,14 @@ code via quasi-quoting built on top of @code{ghc-shakespeare}.") (define-public ghc-yaml (package (name "ghc-yaml") - (version "0.11.5.0") + (version "0.11.7.0") (source (origin (method url-fetch) (uri (string-append "https://hackage.haskell.org/package/" "yaml/yaml-" version ".tar.gz")) (sha256 (base32 - "1bfdsqckzql50j6ni4fa1470cvkmfiy4skb98cdwnj4rss5p93mj")))) + "0s08kw0hqxixxripwjmz7b4yh9130dws3jaj460x8ds8q4b6khbx")))) (build-system haskell-build-system) (inputs `(("ghc-conduit" ,ghc-conduit) @@ -15322,17 +15322,16 @@ code via quasi-quoting built on top of @code{ghc-shakespeare}.") ("ghc-vector" ,ghc-vector) ("ghc-attoparsec" ,ghc-attoparsec) ("ghc-scientific" ,ghc-scientific) - ("ghc-semigroups" ,ghc-semigroups) - ("ghc-temporary" ,ghc-temporary) - ("ghc-enclosed-exceptions" ,ghc-enclosed-exceptions) - ("ghc-base-compat" ,ghc-base-compat) - ("ghc-libyaml" ,ghc-libyaml))) + ("ghc-libyaml" ,ghc-libyaml) + ("ghc-optparse-applicative" ,ghc-optparse-applicative))) (native-inputs `(("ghc-hspec" ,ghc-hspec) ("ghc-hunit" ,ghc-hunit) + ("ghc-base-compat" ,ghc-base-compat) ("hspec-discover" ,hspec-discover) ("ghc-mockery" ,ghc-mockery) - ("ghc-raw-strings-qq" ,ghc-raw-strings-qq))) + ("ghc-raw-strings-qq" ,ghc-raw-strings-qq) + ("ghc-temporary" ,ghc-temporary))) (home-page "https://github.com/snoyberg/yaml/") (synopsis "Parsing and rendering YAML documents") (description -- cgit v1.2.3 From 14cb68c1555569f3b5cc721458eebdf95f28422e Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:42 +0200 Subject: gnu: ghc-zstd: Update to 0.1.3.0. * gnu/packages/haskell-xyz.scm (ghc-zstd): Update to 0.1.3.0. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 8745cc2289..3a5c3a69bc 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -15451,7 +15451,7 @@ provides access to the full zlib feature set.") (define-public ghc-zstd (package (name "ghc-zstd") - (version "0.1.2.0") + (version "0.1.3.0") (source (origin (method url-fetch) @@ -15459,7 +15459,7 @@ provides access to the full zlib feature set.") "zstd/zstd-" version ".tar.gz")) (sha256 (base32 - "0vjw8r11k9kj6c63sfkwz8akq0g32g1bv6n6clvs4g2j12zq1xk8")))) + "0vghl48cxcqy72sqk2gpi7rvy5ya36j13vndaxi6kck6bqivbhm0")))) (build-system haskell-build-system) (native-inputs `(("ghc-quickcheck" ,ghc-quickcheck) -- cgit v1.2.3 From 9057e029da48e82b11ed5a1f410ac8c15bb603bf Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:42 +0200 Subject: gnu: ghc-commonmark: Update to 0.2.1.1. * gnu/packages/haskell-xyz.scm (ghc-commonmark): Update to 0.2.1.1. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 3a5c3a69bc..4dbd8184d0 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -15861,7 +15861,7 @@ entries. For more information about CSL, see @uref{https://citationstyles.org/} (define-public ghc-commonmark (package (name "ghc-commonmark") - (version "0.2.1") + (version "0.2.1.1") (source (origin (method url-fetch) @@ -15870,7 +15870,7 @@ entries. For more information about CSL, see @uref{https://citationstyles.org/} version ".tar.gz")) (sha256 - (base32 "1vba7v1zaqh811v3j4x42g7mhwvxwgzm997kq1kzd0njby14fq5b")))) + (base32 "105szy7l4ji255fwv0kbfcy3i3a3a4197zgj6s9jb12kwbn6n0c7")))) (build-system haskell-build-system) (inputs `(("ghc-unicode-transforms" ,ghc-unicode-transforms))) (native-inputs -- cgit v1.2.3 From 27b9b6bbe49701abbf7f257c81d68fae3cb39c8b Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:42 +0200 Subject: gnu: ghc-commonmark-extensions: Update to 0.2.2. * gnu/packages/haskell-xyz.scm (ghc-commonmark-extensions): Update to 0.2.2. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index 4dbd8184d0..bf09a0dc1e 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -15899,7 +15899,7 @@ varies linearly with input length.") (define-public ghc-commonmark-extensions (package (name "ghc-commonmark-extensions") - (version "0.2.1.2") + (version "0.2.2") (source (origin (method url-fetch) @@ -15908,7 +15908,7 @@ varies linearly with input length.") version ".tar.gz")) (sha256 - (base32 "1ky0j7086a8mqpg26j2nkrc5wfwiw5cd3h3jqncpy59vmj1prkx4")))) + (base32 "0jm6w84p2a2gyaljvnlvjjwrwnir1lss3ps53d0bd8mkvhixxrqr")))) (build-system haskell-build-system) (inputs `(("ghc-network-uri" ,ghc-network-uri) -- cgit v1.2.3 From f66c69a32d2985393bd56e4050d025d024ff7a68 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:42 +0200 Subject: gnu: ghc-mysql: Update to 0.2.1. * gnu/packages/haskell-xyz.scm (ghc-mysql): Update to 0.2.1. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index bf09a0dc1e..c6644a7669 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -16157,7 +16157,7 @@ Haskell newer than 2.8.") (define-public ghc-mysql (package (name "ghc-mysql") - (version "0.2.0.1") + (version "0.2.1") (source (origin (method url-fetch) @@ -16166,7 +16166,7 @@ Haskell newer than 2.8.") version ".tar.gz")) (sha256 - (base32 "16m8hv9yy2nf4jwgqg6n9z53n2pzskbc3gwbp2i3kgff8wsmf8sd")))) + (base32 "051w428arxbix06a52dacqjpnkfx42zbazxsd3l9d857dsd0kl3g")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) ; TODO: Fails to connect to server. (inputs -- cgit v1.2.3 From 0423272c1c6b54ef513958926533368544581205 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:43 +0200 Subject: gnu: ghc-mysql-simple: Update to 0.4.7. * gnu/packages/haskell-xyz.scm (ghc-mysql-simple): Update to 0.4.7. [inputs]: Add ghc-vector. --- gnu/packages/haskell-xyz.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index c6644a7669..ddad796c9d 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -16220,7 +16220,7 @@ Haskell datatypes in text form using the @code{ghc-blaze-builder} library.") (define-public ghc-mysql-simple (package (name "ghc-mysql-simple") - (version "0.4.6") + (version "0.4.7") (source (origin (method url-fetch) @@ -16229,7 +16229,7 @@ Haskell datatypes in text form using the @code{ghc-blaze-builder} library.") version ".tar.gz")) (sha256 - (base32 "1am8ck092s9cv4x1ambalil4mlazkp8w5qhjbl4nq0j2hpy73rby")))) + (base32 "1mhmszpq64h8kxr20iaj1laq46wr2gaqc8xxq1k821i7jfxfld6j")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) ; TODO: Fails to connect to server. (inputs @@ -16240,6 +16240,7 @@ Haskell datatypes in text form using the @code{ghc-blaze-builder} library.") ("ghc-pcre-light" ,ghc-pcre-light) ("ghc-old-locale" ,ghc-old-locale) ("ghc-blaze-textual" ,ghc-blaze-textual) + ("ghc-vector" ,ghc-vector) ("openssl" ,openssl) ("zlib" ,zlib))) (native-inputs `(("ghc-hspec" ,ghc-hspec))) -- cgit v1.2.3 From 5e8b18dbb1632ad1b5f297308960989088985db0 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Mon, 25 Oct 2021 14:28:43 +0200 Subject: gnu: ghc-persistent-postgresql: Update to 2.13.2.1. * gnu/packages/haskell-xyz.scm (ghc-persistent-postgresql): Update to 2.13.2.1. --- gnu/packages/haskell-xyz.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/haskell-xyz.scm') diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm index ddad796c9d..6fb6933be4 100644 --- a/gnu/packages/haskell-xyz.scm +++ b/gnu/packages/haskell-xyz.scm @@ -16458,7 +16458,7 @@ server and to receive the results of these queries.") (define-public ghc-persistent-postgresql (package (name "ghc-persistent-postgresql") - (version "2.13.1.0") + (version "2.13.2.1") (source (origin (method url-fetch) @@ -16467,7 +16467,7 @@ server and to receive the results of these queries.") version ".tar.gz")) (sha256 - (base32 "05bj3b7kdwaba3szrrsmafxr6vcnvdhq20jk5xx348jnf2flkw0i")))) + (base32 "07pnr8m0nk43jaz6l293lzx4ivyqgnw94fjypazzm008b4irh7ir")))) (build-system haskell-build-system) (arguments `(#:tests? #f)) ; TODO: Cannot import MaybeFieldDefsTest. (inputs -- cgit v1.2.3