Merge pull request #300455 from NixOS/haskell-updates

haskellPackages: update stackage and hackage
This commit is contained in:
maralorn 2024-04-09 22:55:52 +02:00 committed by GitHub
commit ae67af30bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
14 changed files with 1382 additions and 1008 deletions

View File

@ -1,6 +1,6 @@
{
"commit": "8fd329148e6583ab472717f5cac4e8132dac2c1e",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/8fd329148e6583ab472717f5cac4e8132dac2c1e.tar.gz",
"sha256": "0acf86rjvkh8vgbkzm1gjavm8xr508hd19ncwa19zqrf8gpp051x",
"msg": "Update from Hackage at 2024-03-16T22:28:08Z"
"commit": "a3f1357d6561e38afbb7545f733063f9ad7465c4",
"url": "https://github.com/commercialhaskell/all-cabal-hashes/archive/a3f1357d6561e38afbb7545f733063f9ad7465c4.tar.gz",
"sha256": "0nvrqbaf483af1abxqcms8f60nbxyqghf5k1jb4m3xah0206kdwf",
"msg": "Update from Hackage at 2024-03-31T04:36:22Z"
}

View File

@ -56,6 +56,8 @@ haskellPackages.mkDerivation rec {
homepage = "https://github.com/carp-lang/Carp";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ jluttine ];
# Not actively maintained at the moment
broken = true;
# Windows not (yet) supported.
platforms = with lib.platforms; unix ++ darwin;

View File

@ -350,10 +350,10 @@ stdenv.mkDerivation ({
'*-android*|*-gnueabi*|*-musleabi*)'
done
''
# Need to make writable EM_CACHE for emscripten
# Need to make writable EM_CACHE for emscripten. The path in EM_CACHE must be absolute.
# https://gitlab.haskell.org/ghc/ghc/-/wikis/javascript-backend#configure-fails-with-sub-word-sized-atomic-operations-not-available
+ lib.optionalString targetPlatform.isGhcjs ''
export EM_CACHE="$(mktemp -d emcache.XXXXXXXXXX)"
export EM_CACHE="$(realpath $(mktemp -d emcache.XXXXXXXXXX))"
cp -Lr ${targetCC /* == emscripten */}/share/emscripten/cache/* "$EM_CACHE/"
chmod u+rwX -R "$EM_CACHE"
''

View File

@ -20,8 +20,8 @@ with haskellLib;
self: super: {
# Make sure that Cabal 3.10.* can be built as-is
Cabal_3_10_2_1 = doDistribute (super.Cabal_3_10_2_1.override ({
Cabal-syntax = self.Cabal-syntax_3_10_2_0;
Cabal_3_10_3_0 = doDistribute (super.Cabal_3_10_3_0.override ({
Cabal-syntax = self.Cabal-syntax_3_10_3_0;
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.2.5") {
# Use process core package when possible
process = self.process_1_6_18_0;
@ -36,9 +36,9 @@ self: super: {
{
# Needs to be downgraded compared to Stackage LTS 21
resolv = cself.resolv_0_1_2_0;
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.6") {
Cabal = cself.Cabal_3_10_2_1;
Cabal-syntax = cself.Cabal-syntax_3_10_2_0;
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.10") {
Cabal = cself.Cabal_3_10_3_0;
Cabal-syntax = cself.Cabal-syntax_3_10_3_0;
} // lib.optionalAttrs (lib.versionOlder self.ghc.version "9.4") {
# We need at least directory >= 1.3.7.0. Using the latest version
# 1.3.8.* is not an option since it causes very annoying dependencies
@ -81,7 +81,7 @@ self: super: {
extensions = doJailbreak (super.extensions.override {
Cabal =
if versionOlder self.ghc.version "9.6"
then self.Cabal_3_10_2_1
then self.Cabal_3_10_3_0
else null; # use GHC bundled version
});
@ -185,6 +185,7 @@ self: super: {
# https://github.com/mpickering/eventlog2html/pull/187
eventlog2html = lib.pipe super.eventlog2html [
doJailbreak
(appendPatch (fetchpatch {
name = "blaze-html-compat.patch";
url = "https://github.com/mpickering/eventlog2html/commit/666aee9ee44c571173a73036b36ad4154c188481.patch";
@ -1512,7 +1513,7 @@ self: super: {
# 2022-08-31: Jailbreak is done to allow aeson 2.0.*:
# https://github.com/haskell-CI/haskell-ci/commit/6ad0d5d701cbe101013335d597acaf5feadd3ab9#r82681900
cabal-install-parsers = doJailbreak (dontCheck (super.cabal-install-parsers.override {
Cabal-syntax = self.Cabal-syntax_3_10_2_0;
Cabal-syntax = self.Cabal-syntax_3_10_3_0;
}));
# Test suite requires database
@ -2297,7 +2298,7 @@ self: super: {
# 2023-07-03: allow lattices-2.2, waiting on https://github.com/haskell-CI/haskell-ci/pull/664
# 2024-03-21: pins specific version of ShellCheck
haskell-ci = doJailbreak (super.haskell-ci.overrideScope (self: super: {
Cabal-syntax = self.Cabal-syntax_3_10_2_0;
Cabal-syntax = self.Cabal-syntax_3_10_3_0;
ShellCheck = self.ShellCheck_0_9_0;
}));
@ -2564,7 +2565,7 @@ self: super: {
cabal-fmt = doJailbreak (super.cabal-fmt.override {
# Needs newer Cabal-syntax version.
Cabal-syntax = self.Cabal-syntax_3_10_2_0;
Cabal-syntax = self.Cabal-syntax_3_10_3_0;
});
# 2023-07-18: https://github.com/srid/ema/issues/156
@ -3036,13 +3037,6 @@ self: super: {
# repa-query, repa-scalar, repa-store, repa-stream
;
# https://github.com/jhickner/smtp-mail/pull/41 Use crypton-connection instead of connection
smtp-mail = appendPatch (pkgs.fetchpatch {
name = "smtp-mail-crypton-connection.patch";
url = "https://github.com/jhickner/smtp-mail/commit/4c724c80814ab1da7c37256a6c10e04c88b9af95.patch";
hash = "sha256-rCyY4rB/wLspeAbLw1jji5BykYFLnmTjLiUyNkiEXmw";
}) (super.smtp-mail.override { connection = self.crypton-connection; });
# Use recent git version as the hackage version is outdated and not building on recent GHC versions
haskell-to-elm = overrideSrc {
version = "unstable-2023-12-02";
@ -3068,4 +3062,7 @@ self: super: {
tasty = super.tasty_1_5;
tasty-quickcheck = super.tasty-quickcheck_0_10_3;
});
# Too strict bounds on text. Can be removed after https://github.com/alx741/currencies/pull/3 is merged
currencies = doJailbreak super.currencies;
} // import ./configuration-tensorflow.nix {inherit pkgs haskellLib;} self super

View File

@ -303,6 +303,8 @@ self: super: ({
stripLen = 1;
}) super.inline-c-cpp;
# Tests fail on macOS https://github.com/mrkkrp/zip/issues/112
zip = dontCheck super.zip;
} // lib.optionalAttrs pkgs.stdenv.isAarch64 { # aarch64-darwin
# https://github.com/fpco/unliftio/issues/87

View File

@ -106,7 +106,7 @@ in {
(
let
hls_overlay = lself: lsuper: {
Cabal-syntax = lself.Cabal-syntax_3_10_2_0;
Cabal-syntax = lself.Cabal-syntax_3_10_3_0;
};
in
lib.mapAttrs (_: pkg: doDistribute (pkg.overrideScope hls_overlay)) {

View File

@ -52,12 +52,14 @@ self: super: {
#
# Version upgrades
#
th-abstraction = doDistribute self.th-abstraction_0_6_0_0;
th-abstraction = doDistribute self.th-abstraction_0_7_0_0;
ghc-lib-parser = doDistribute self.ghc-lib-parser_9_8_2_20240223;
ghc-lib-parser-ex = doDistribute self.ghc-lib-parser-ex_9_8_0_2;
ghc-lib = doDistribute self.ghc-lib_9_8_1_20231121;
megaparsec = doDistribute self.megaparsec_9_6_1;
aeson = doDistribute self.aeson_2_2_1_0;
# TODO: remove when aeson updates or launches a revision
# see https://github.com/haskell/aeson/issues/1089 and https://github.com/haskell/aeson/pulls/1088
aeson = doJailbreak (doDistribute self.aeson_2_2_1_0);
attoparsec-aeson = doDistribute self.attoparsec-aeson_2_2_0_1;
xmonad = doDistribute self.xmonad_0_18_0;
apply-refact = self.apply-refact_0_14_0_0;

View File

@ -693,7 +693,6 @@ broken-packages:
- cassava-records # failure in job https://hydra.nixos.org/build/233259049 at 2023-09-02
- cassava-streams # failure in job https://hydra.nixos.org/build/233222669 at 2023-09-02
- cassette # failure in job https://hydra.nixos.org/build/233201251 at 2023-09-02
- castagnoli # failure in job https://hydra.nixos.org/build/233213036 at 2023-09-02
- castle # failure in job https://hydra.nixos.org/build/233204027 at 2023-09-02
- catamorphism # failure in job https://hydra.nixos.org/build/233208488 at 2023-09-02
- Catana # failure in job https://hydra.nixos.org/build/233196550 at 2023-09-02
@ -1083,7 +1082,6 @@ broken-packages:
- curl-aeson # failure in job https://hydra.nixos.org/build/233210106 at 2023-09-02
- curl-runnings # failure in job https://hydra.nixos.org/build/233258680 at 2023-09-02
- curly-expander # failure in job https://hydra.nixos.org/build/233250838 at 2023-09-02
- currencies # failure in job https://hydra.nixos.org/build/233216717 at 2023-09-02
- currency-convert # failure in job https://hydra.nixos.org/build/233224509 at 2023-09-02
- curry-base # failure in job https://hydra.nixos.org/build/233246647 at 2023-09-02
- CurryDB # failure in job https://hydra.nixos.org/build/233238995 at 2023-09-02
@ -3300,7 +3298,6 @@ broken-packages:
- kind-integer # failure in job https://hydra.nixos.org/build/233250066 at 2023-09-02
- kleene-list # failure in job https://hydra.nixos.org/build/233237651 at 2023-09-02
- kmn-programming # failure in job https://hydra.nixos.org/build/233258328 at 2023-09-02
- kmonad # failure in job https://hydra.nixos.org/build/252717089 at 2024-03-16
- kmp-dfa # failure in job https://hydra.nixos.org/build/233237266 at 2023-09-02
- knots # failure in job https://hydra.nixos.org/build/233209153 at 2023-09-02
- koellner-phonetic # failure in job https://hydra.nixos.org/build/233217750 at 2023-09-02
@ -4233,7 +4230,6 @@ broken-packages:
- optimization # failure in job https://hydra.nixos.org/build/233191078 at 2023-09-02
- optional # failure in job https://hydra.nixos.org/build/233241818 at 2023-09-02
- options-time # failure in job https://hydra.nixos.org/build/233194289 at 2023-09-02
- optparse-applicative-cmdline-util # failure in job https://hydra.nixos.org/build/252739738 at 2024-03-16
- optparse-applicative-simple # failure in job https://hydra.nixos.org/build/233236802 at 2023-09-02
- optparse-declarative # failure in job https://hydra.nixos.org/build/252718969 at 2024-03-16
- optparse-helper # failure in job https://hydra.nixos.org/build/233248522 at 2023-09-02

View File

@ -365,6 +365,7 @@ package-maintainers:
- X11
- X11-xft
- html-parse-util
- kmonad
- optparse-applicative-cmdline-util
- xmonad
- xmonad-contrib

View File

@ -1,4 +1,4 @@
# Stackage LTS 22.13
# Stackage LTS 22.14
# This file is auto-generated by
# maintainers/scripts/haskell/update-stackage.sh
default-package-overrides:
@ -352,7 +352,7 @@ default-package-overrides:
- ansi-wl-pprint ==1.0.2
- ANum ==0.2.0.2
- aos-signature ==0.1.1
- apecs ==0.9.5
- apecs ==0.9.6
- apecs-gloss ==0.2.4
- apecs-physics ==0.4.6
- api-field-json-th ==0.1.0.2
@ -402,7 +402,7 @@ default-package-overrides:
- attoparsec-binary ==0.2
- attoparsec-data ==1.0.5.4
- attoparsec-expr ==0.1.1.2
- attoparsec-framer ==0.1.0.2
- attoparsec-framer ==0.1.0.3
- attoparsec-iso8601 ==1.1.0.1
- attoparsec-path ==0.0.0.1
- attoparsec-run ==0.0.2.0
@ -461,7 +461,7 @@ default-package-overrides:
- between ==0.11.0.0
- bibtex ==0.1.0.7
- bifunctor-classes-compat ==0.1
- bifunctors ==5.6.1
- bifunctors ==5.6.2
- bimap ==0.5.0
- bimaps ==0.1.0.2
- bin ==0.1.3
@ -564,12 +564,13 @@ default-package-overrides:
- bytestring-to-vector ==0.3.0.1
- bytestring-tree-builder ==0.2.7.12
- bytestring-trie ==0.2.7.2
- bz2 ==1.0.1.0
- bzlib ==0.5.1.0
- bzlib-conduit ==0.3.0.2
- bz2 ==1.0.1.1
- bzip2-clib ==1.0.8
- bzlib ==0.5.2.0
- bzlib-conduit ==0.3.0.3
- c14n ==0.1.0.3
- c2hs ==0.28.8
- cabal2spec ==2.7.0
- cabal2spec ==2.7.1
- cabal-appimage ==0.4.0.2
- cabal-clean ==0.2.20230609
- cabal-debian ==5.2.3
@ -679,8 +680,8 @@ default-package-overrides:
- comfort-fftw ==0.0.0.1
- comfort-glpk ==0.1
- comfort-graph ==0.0.4
- commonmark ==0.2.5.1
- commonmark-extensions ==0.2.5.3
- commonmark ==0.2.6
- commonmark-extensions ==0.2.5.4
- commonmark-pandoc ==0.2.2.1
- commutative ==0.0.2
- commutative-semigroups ==0.1.0.2
@ -728,7 +729,7 @@ default-package-overrides:
- constraints-extras ==0.4.0.0
- constraint-tuples ==0.1.2
- construct ==0.3.1.2
- context ==0.2.0.3
- context ==0.2.1.0
- context-http-client ==0.2.0.2
- context-resource ==0.2.0.2
- context-wai-middleware ==0.2.0.2
@ -869,7 +870,7 @@ default-package-overrides:
- derive-storable ==0.3.1.0
- derive-topdown ==0.0.3.0
- deriving-aeson ==0.2.9
- deriving-compat ==0.6.5
- deriving-compat ==0.6.6
- deriving-trans ==0.9.1.0
- detour-via-sci ==1.0.0
- df1 ==0.4.2
@ -909,7 +910,7 @@ default-package-overrides:
- discrimination ==0.5
- disk-free-space ==0.1.0.1
- distributed-closure ==0.5.0.0
- distributed-static ==0.3.9
- distributed-static ==0.3.10
- distribution-opensuse ==1.1.4
- distributive ==0.6.2.1
- diversity ==0.8.1.0
@ -1096,7 +1097,7 @@ default-package-overrides:
- flac-picture ==0.1.3
- flags-applicative ==0.1.0.3
- flat ==0.6
- flatparse ==0.5.0.2
- flatparse ==0.5.1.0
- flay ==0.4
- flexible-defaults ==0.0.3
- FloatingHex ==0.5
@ -1146,7 +1147,7 @@ default-package-overrides:
- fuzzcheck ==0.1.1
- fuzzy ==0.1.1.0
- fuzzy-dates ==0.1.1.2
- fuzzyset ==0.3.1
- fuzzyset ==0.3.2
- fuzzy-time ==0.2.0.3
- gauge ==0.2.5
- gd ==3000.7.3
@ -1344,13 +1345,13 @@ default-package-overrides:
- haskoin-node ==1.0.1
- haskoin-store-data ==1.2.5
- hasktags ==0.73.0
- hasql ==1.6.4.1
- hasql-dynamic-statements ==0.3.1.4
- hasql ==1.6.4.3
- hasql-dynamic-statements ==0.3.1.5
- hasql-implicits ==0.1.1.2
- hasql-interpolate ==0.2.1.0
- hasql-listen-notify ==0.1.0.1
- hasql-migration ==0.3.0
- hasql-notifications ==0.2.0.6
- hasql-notifications ==0.2.1.0
- hasql-optparse-applicative ==0.7.1.3
- hasql-pool ==0.10.1
- hasql-th ==0.4.0.19
@ -1520,7 +1521,7 @@ default-package-overrides:
- HTTP ==4000.4.1
- http-api-data ==0.5.1
- http-api-data-qq ==0.1.0.0
- http-client ==0.7.16
- http-client ==0.7.17
- http-client-openssl ==0.3.3
- http-client-overrides ==0.1.1.0
- http-client-restricted ==0.1.0
@ -1530,7 +1531,7 @@ default-package-overrides:
- http-date ==0.0.11
- http-directory ==0.1.10
- http-download ==0.2.1.0
- httpd-shed ==0.4.1.1
- httpd-shed ==0.4.1.2
- http-io-streams ==0.1.7.0
- http-link-header ==1.2.1
- http-media ==0.8.1.1
@ -1604,7 +1605,7 @@ default-package-overrides:
- infer-license ==0.2.0
- infinite-list ==0.1.1
- inflections ==0.4.0.7
- influxdb ==1.9.3
- influxdb ==1.9.3.1
- ini ==0.4.2
- inj ==1.0
- inline-c ==0.9.1.10
@ -1628,7 +1629,7 @@ default-package-overrides:
- intervals ==0.9.2
- intset-imperative ==0.1.0.0
- int-supply ==1.0.0
- invariant ==0.6.2
- invariant ==0.6.3
- invert ==1.0.0.4
- invertible ==0.2.0.8
- invertible-grammar ==0.1.3.5
@ -1748,8 +1749,8 @@ default-package-overrides:
- lens-action ==0.2.6
- lens-aeson ==1.2.3
- lens-csv ==0.1.1.0
- lens-family ==2.1.2
- lens-family-core ==2.1.2
- lens-family ==2.1.3
- lens-family-core ==2.1.3
- lens-misc ==0.0.2.0
- lens-properties ==4.11.1
- lens-regex ==0.1.3
@ -1761,7 +1762,8 @@ default-package-overrides:
- libBF ==0.6.7
- libffi ==0.2.1
- liboath-hs ==0.0.1.2
- libyaml ==0.1.2
- libyaml ==0.1.4
- libyaml-clib ==0.2.5
- lifted-async ==0.10.2.5
- lifted-base ==0.2.3.12
- lift-generics ==0.2.1
@ -1823,7 +1825,7 @@ default-package-overrides:
- machines ==0.7.3
- magic ==1.1
- magico ==0.0.2.3
- mailtrap ==0.1.2.0
- mailtrap ==0.1.2.1
- mainland-pretty ==0.7.1
- main-tester ==0.2.0.1
- managed ==1.0.10
@ -1928,7 +1930,7 @@ default-package-overrides:
- monad-interleave ==0.2.0.1
- monadlist ==0.0.2
- monad-logger ==0.3.40
- monad-logger-aeson ==0.4.1.2
- monad-logger-aeson ==0.4.1.3
- monad-logger-json ==0.1.0.0
- monad-logger-logstash ==0.2.0.2
- monad-loops ==0.4.3
@ -1992,7 +1994,7 @@ default-package-overrides:
- mysql ==0.2.1
- mysql-haskell ==1.1.4
- mysql-haskell-nem ==0.1.0.0
- mysql-json-table ==0.1.3.0
- mysql-json-table ==0.1.4.0
- mysql-simple ==0.4.9
- n2o ==0.11.1
- n2o-nitro ==0.11.2
@ -2029,9 +2031,9 @@ default-package-overrides:
- network-messagepack-rpc ==0.1.2.0
- network-messagepack-rpc-websocket ==0.1.1.1
- network-multicast ==0.3.2
- network-run ==0.2.6
- network-run ==0.2.7
- network-simple ==0.4.5
- network-transport ==0.5.6
- network-transport ==0.5.7
- network-uri ==2.6.4.2
- network-wait ==0.2.0.0
- newtype ==0.2.2.0
@ -2481,7 +2483,7 @@ default-package-overrides:
- rp-tree ==0.7.1
- rrb-vector ==0.2.1.0
- RSA ==2.4.1
- rss ==3000.2.0.7
- rss ==3000.2.0.8
- rss-conduit ==0.6.0.1
- run-haskell-module ==0.0.2
- runmemo ==1.0.0.1
@ -2490,7 +2492,7 @@ default-package-overrides:
- rzk ==0.7.3
- s3-signer ==0.5.0.0
- safe ==0.3.21
- safe-coloured-text ==0.2.0.1
- safe-coloured-text ==0.2.0.2
- safe-coloured-text-gen ==0.0.0.2
- safe-coloured-text-layout ==0.0.0.0
- safe-coloured-text-layout-gen ==0.0.0.0
@ -2516,7 +2518,7 @@ default-package-overrides:
- sandwich-slack ==0.1.2.0
- sandwich-webdriver ==0.2.3.1
- say ==0.1.0.1
- sbp ==5.0.5
- sbp ==5.0.7
- sbv ==10.2
- scalpel ==0.6.2.2
- scalpel-core ==0.6.2.2
@ -2651,8 +2653,8 @@ default-package-overrides:
- skein ==1.0.9.4
- skews ==0.1.0.3
- skip-var ==0.1.1.0
- skylighting ==0.14.1
- skylighting-core ==0.14.1
- skylighting ==0.14.1.1
- skylighting-core ==0.14.1.1
- skylighting-format-ansi ==0.1
- skylighting-format-blaze-html ==0.1.1.2
- skylighting-format-context ==0.1.0.2
@ -2691,7 +2693,7 @@ default-package-overrides:
- Spock-api ==0.14.0.0
- spoon ==0.3.1
- spreadsheet ==0.1.3.10
- sqids ==0.2.1.0
- sqids ==0.2.2.0
- sqlite-simple ==0.4.19.0
- sql-words ==0.1.6.5
- squeal-postgresql ==0.9.1.3
@ -2882,7 +2884,7 @@ default-package-overrides:
- test-fun ==0.1.0.0
- testing-feat ==1.1.1.1
- testing-type-modifiers ==0.1.0.1
- texmath ==0.12.8.6
- texmath ==0.12.8.7
- text-ansi ==0.3.0.1
- text-binary ==0.2.1.1
- text-builder ==0.6.7.2
@ -2909,7 +2911,7 @@ default-package-overrides:
- tf-random ==0.5
- th-abstraction ==0.5.0.0
- th-bang-compat ==0.0.1.0
- th-compat ==0.1.4
- th-compat ==0.1.5
- th-constraint-compat ==0.0.1.0
- th-data-compat ==0.1.3.1
- th-desugar ==1.15
@ -3064,7 +3066,7 @@ default-package-overrides:
- universe-instances-extended ==1.1.3
- universe-reverse-instances ==1.1.1
- universe-some ==1.2.1
- universum ==1.8.2
- universum ==1.8.2.1
- unix-bytestring ==0.4.0.1
- unix-compat ==0.7.1
- unix-time ==0.4.12
@ -3131,7 +3133,7 @@ default-package-overrides:
- vector-th-unbox ==0.2.2
- verbosity ==0.4.0.0
- verset ==0.0.1.9
- versions ==6.0.5
- versions ==6.0.6
- vformat ==0.14.1.0
- vformat-time ==0.1.0.0
- ViennaRNAParser ==1.3.3
@ -3161,7 +3163,7 @@ default-package-overrides:
- wai-middleware-caching-lru ==0.1.0.0
- wai-middleware-caching-redis ==0.2.0.0
- wai-middleware-clacks ==0.1.0.1
- wai-middleware-delegate ==0.1.4.0
- wai-middleware-delegate ==0.1.4.1
- wai-middleware-metrics ==0.2.4
- wai-middleware-prometheus ==1.0.0.1
- wai-middleware-static ==0.9.2
@ -3193,7 +3195,7 @@ default-package-overrides:
- wide-word ==0.1.6.0
- Win32-notify ==0.3.0.3
- windns ==0.1.0.1
- witch ==1.2.0.4
- witch ==1.2.1.0
- withdependencies ==0.3.0
- witherable ==0.4.2
- within ==0.2.0.1

View File

@ -1331,4 +1331,6 @@ self: super: builtins.intersectAttrs super {
# Test failure is related to a GHC implementation detail of primitives and doesn't
# cause actual problems in dependent packages, see https://github.com/lehins/pvar/issues/4
pvar = dontCheck super.pvar;
kmonad = enableSeparateBinOutput super.kmonad;
}

File diff suppressed because it is too large Load Diff

View File

@ -39768,6 +39768,8 @@ with pkgs;
kmon = callPackage ../tools/system/kmon { };
kmonad = haskellPackages.kmonad.bin;
kompose = callPackage ../applications/networking/cluster/kompose { };
kompute = callPackage ../development/libraries/kompute {

View File

@ -270,7 +270,7 @@ let
cabal-install
cabal2nix
cachix
carp
# carp broken on 2024-04-09
cedille
client-ip-echo
darcs
@ -491,11 +491,11 @@ let
compilerNames.ghc981
compilerNames.ghc982
] released;
Cabal_3_10_2_1 = lib.subtractLists [
Cabal_3_10_3_0 = lib.subtractLists [
compilerNames.ghc981
compilerNames.ghc982
] released;
Cabal-syntax_3_10_1_0 = lib.subtractLists [
Cabal-syntax_3_10_3_0 = lib.subtractLists [
compilerNames.ghc981
compilerNames.ghc982
] released;