From 7ae787371333556a7b84778631ed91d1d73e8370 Mon Sep 17 00:00:00 2001 From: Tom McLaughlin Date: Sun, 23 Apr 2023 12:05:06 -0700 Subject: [PATCH] Clean build against nightly-2023-04-14 (#1675) --- .github/workflows/master.yml | 10 ++--- cabal.ghcjs.project | 1 + ghcjs.nix | 44 +++++++++++-------- .../servant-auth-client.cabal | 6 +-- .../servant-auth-docs/servant-auth-docs.cabal | 6 +-- .../servant-auth-server.cabal | 6 +-- .../servant-auth-swagger.cabal | 6 +-- servant-auth/servant-auth/servant-auth.cabal | 2 +- servant-client-core/servant-client-core.cabal | 6 +-- servant-client/servant-client.cabal | 6 +-- servant-conduit/servant-conduit.cabal | 2 +- servant-docs/servant-docs.cabal | 2 +- servant-foreign/servant-foreign.cabal | 6 +-- .../servant-http-streams.cabal | 6 +-- servant-server/servant-server.cabal | 6 +-- servant-swagger/servant-swagger.cabal | 2 +- servant/servant.cabal | 6 +-- stack.yaml | 6 ++- stack.yaml.lock | 21 ++++++--- 19 files changed, 84 insertions(+), 66 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 5a9c3b176..309210894 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -1,10 +1,8 @@ name: CI -# Trigger the workflow on push or pull request, but only for the master branch on: pull_request: push: - branches: [master] jobs: cabal: @@ -19,8 +17,8 @@ jobs: - "8.8.4" - "8.10.7" - "9.0.2" - - "9.2.2" - - "9.4.2" + - "9.2.7" + - "9.4.4" steps: - uses: actions/checkout@v2 @@ -117,11 +115,13 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: cachix/install-nix-action@v13 + - uses: cachix/install-nix-action@v20 with: extra_nix_config: | trusted-public-keys = ryantrinkle.com-1:JJiAKaRv9mWgpVAz8dwewnZe0AzzEAzPkagE9SP5NWI=1aba6f367982bd6dd78ec2fda75ab246a62d32c5 cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= substituters = https://nixcache.reflex-frp.org https://cache.nixos.org/ + nix_path: nixpkgs=channel:release-22.11 + - name: Setup run: | # Override cabal.project with the lightweight GHCJS one diff --git a/cabal.ghcjs.project b/cabal.ghcjs.project index 46d74b2c3..d42b7b49c 100644 --- a/cabal.ghcjs.project +++ b/cabal.ghcjs.project @@ -12,3 +12,4 @@ tests: True -- Constraints so that reflex-platform provided packages are selected. constraints: attoparsec == 0.13.2.2 constraints: hashable == 1.3.0.0 +constraints: hspec < 2.10 diff --git a/ghcjs.nix b/ghcjs.nix index 274d007cc..c35c42a73 100644 --- a/ghcjs.nix +++ b/ghcjs.nix @@ -1,22 +1,30 @@ -let reflex-platform = import (builtins.fetchTarball - { name = "reflex-platform"; - url = "https://github.com/reflex-frp/reflex-platform/archive/1aba6f367982bd6dd78ec2fda75ab246a62d32c5.tar.gz"; - }) {}; - pkgs = import ./nix/nixpkgs.nix; in +let + reflex-platform = import (builtins.fetchTarball { + name = "reflex-platform"; + url = "https://github.com/reflex-frp/reflex-platform/archive/1aba6f367982bd6dd78ec2fda75ab246a62d32c5.tar.gz"; + }) {}; + + pkgs = import ./nix/nixpkgs.nix; + +in pkgs.stdenv.mkDerivation { name = "ghcjs-shell"; - buildInputs = - [ (reflex-platform.ghcjs.ghcWithPackages (p: with p; [ - attoparsec - hashable - ])) - pkgs.cabal-install - pkgs.gmp - pkgs.haskellPackages.cabal-plan - pkgs.haskellPackages.hspec-discover - pkgs.nodejs - pkgs.perl - pkgs.zlib - ]; + buildInputs = [ + (reflex-platform.ghcjs.ghcWithPackages (p: with p; [ + attoparsec + hashable + ])) + ] ++ (with pkgs; [ + cabal-install + gmp + haskellPackages.cabal-plan + haskellPackages.hspec-discover + nodejs + perl + zlib + openssl + openssl.dev + postgresql + ]); } diff --git a/servant-auth/servant-auth-client/servant-auth-client.cabal b/servant-auth/servant-auth-client/servant-auth-client.cabal index c1ebfc083..709e79cb3 100644 --- a/servant-auth/servant-auth-client/servant-auth-client.cabal +++ b/servant-auth/servant-auth-client/servant-auth-client.cabal @@ -16,7 +16,7 @@ maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni license: BSD-3-Clause license-file: LICENSE -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Simple extra-source-files: CHANGELOG.md @@ -50,7 +50,7 @@ test-suite spec test default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall - build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 + build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 -- dependencies with bounds inherited from the library stanza build-depends: @@ -62,7 +62,7 @@ test-suite spec -- test dependencies build-depends: - hspec >= 2.5.5 && < 2.10 + hspec >= 2.5.5 && < 2.11 , QuickCheck >= 2.11.3 && < 2.15 , aeson >= 1.3.1.1 && < 3 , bytestring >= 0.10.6.0 && < 0.12 diff --git a/servant-auth/servant-auth-docs/servant-auth-docs.cabal b/servant-auth/servant-auth-docs/servant-auth-docs.cabal index f2bdeb8bd..66387f60e 100644 --- a/servant-auth/servant-auth-docs/servant-auth-docs.cabal +++ b/servant-auth/servant-auth-docs/servant-auth-docs.cabal @@ -16,7 +16,7 @@ maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni license: BSD-3-Clause license-file: LICENSE -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Custom extra-source-files: CHANGELOG.md @@ -64,7 +64,7 @@ test-suite spec test default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall - build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 + build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 -- dependencies with bounds inherited from the library stanza build-depends: @@ -78,7 +78,7 @@ test-suite spec -- test dependencies build-depends: servant-auth-docs - , hspec >= 2.5.5 && < 2.10 + , hspec >= 2.5.5 && < 2.11 , QuickCheck >= 2.11.3 && < 2.15 default-language: Haskell2010 diff --git a/servant-auth/servant-auth-server/servant-auth-server.cabal b/servant-auth/servant-auth-server/servant-auth-server.cabal index 86dc4c70a..05d66499e 100644 --- a/servant-auth/servant-auth-server/servant-auth-server.cabal +++ b/servant-auth/servant-auth-server/servant-auth-server.cabal @@ -16,7 +16,7 @@ maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni license: BSD-3-Clause license-file: LICENSE -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Simple extra-source-files: CHANGELOG.md @@ -102,7 +102,7 @@ test-suite spec test default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall - build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.10 + build-tool-depends: hspec-discover:hspec-discover >=2.5.5 && <2.11 -- dependencies with bounds inherited from the library stanza build-depends: @@ -123,7 +123,7 @@ test-suite spec -- test dependencies build-depends: servant-auth-server - , hspec >= 2.5.5 && < 2.10 + , hspec >= 2.5.5 && < 2.11 , QuickCheck >= 2.11.3 && < 2.15 , http-client >= 0.5.13.1 && < 0.8 , lens-aeson >= 1.0.2 && < 1.3 diff --git a/servant-auth/servant-auth-swagger/servant-auth-swagger.cabal b/servant-auth/servant-auth-swagger/servant-auth-swagger.cabal index f02f3c776..bf13ff389 100644 --- a/servant-auth/servant-auth-swagger/servant-auth-swagger.cabal +++ b/servant-auth/servant-auth-swagger/servant-auth-swagger.cabal @@ -16,7 +16,7 @@ maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni license: BSD-3-Clause license-file: LICENSE -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Simple extra-source-files: CHANGELOG.md @@ -49,7 +49,7 @@ test-suite spec test default-extensions: ConstraintKinds DataKinds DefaultSignatures DeriveFoldable DeriveFunctor DeriveGeneric DeriveTraversable FlexibleContexts FlexibleInstances FunctionalDependencies GADTs KindSignatures MultiParamTypeClasses OverloadedStrings RankNTypes ScopedTypeVariables TypeFamilies TypeOperators ghc-options: -Wall - build-tool-depends: hspec-discover:hspec-discover >= 2.5.5 && <2.10 + build-tool-depends: hspec-discover:hspec-discover >= 2.5.5 && <2.11 -- dependencies with bounds inherited from the library stanza build-depends: base @@ -63,7 +63,7 @@ test-suite spec -- test dependencies build-depends: servant-auth-swagger - , hspec >= 2.5.5 && < 2.10 + , hspec >= 2.5.5 && < 2.11 , QuickCheck >= 2.11.3 && < 2.15 other-modules: Servant.Auth.SwaggerSpec diff --git a/servant-auth/servant-auth/servant-auth.cabal b/servant-auth/servant-auth/servant-auth.cabal index d4f7fa701..289fcba6b 100644 --- a/servant-auth/servant-auth/servant-auth.cabal +++ b/servant-auth/servant-auth/servant-auth.cabal @@ -18,7 +18,7 @@ maintainer: jkarni@gmail.com copyright: (c) Julian K. Arni license: BSD-3-Clause license-file: LICENSE -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.4 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 build-type: Simple extra-source-files: CHANGELOG.md diff --git a/servant-client-core/servant-client-core.cabal b/servant-client-core/servant-client-core.cabal index 595015c08..0a3e76cff 100644 --- a/servant-client-core/servant-client-core.cabal +++ b/servant-client-core/servant-client-core.cabal @@ -16,7 +16,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 , GHCJS ==8.6.0.1 extra-source-files: @@ -104,8 +104,8 @@ test-suite spec -- Additional dependencies build-depends: deepseq >= 1.4.2.0 && < 1.5 - , hspec >= 2.6.0 && < 2.10 + , hspec >= 2.6.0 && < 2.11 , QuickCheck >= 2.12.6.1 && < 2.15 build-tool-depends: - hspec-discover:hspec-discover >= 2.6.0 && <2.10 + hspec-discover:hspec-discover >= 2.6.0 && <2.11 diff --git a/servant-client/servant-client.cabal b/servant-client/servant-client.cabal index 39684f8bf..ef38a5116 100644 --- a/servant-client/servant-client.cabal +++ b/servant-client/servant-client.cabal @@ -20,7 +20,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 , GHCJS ==8.6.0.1 extra-source-files: @@ -124,7 +124,7 @@ test-suite spec -- Additional dependencies build-depends: entropy >= 0.4.1.3 && < 0.5 - , hspec >= 2.6.0 && < 2.10 + , hspec >= 2.6.0 && < 2.11 , HUnit >= 1.6.0.0 && < 1.7 , network >= 2.8.0.0 && < 3.2 , QuickCheck >= 2.12.6.1 && < 2.15 @@ -132,7 +132,7 @@ test-suite spec , servant-server == 0.19.* build-tool-depends: - hspec-discover:hspec-discover >= 2.6.0 && < 2.10 + hspec-discover:hspec-discover >= 2.6.0 && < 2.11 test-suite readme type: exitcode-stdio-1.0 diff --git a/servant-conduit/servant-conduit.cabal b/servant-conduit/servant-conduit.cabal index 740fcaecd..f4634f96d 100644 --- a/servant-conduit/servant-conduit.cabal +++ b/servant-conduit/servant-conduit.cabal @@ -16,7 +16,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2018-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: CHANGELOG.md diff --git a/servant-docs/servant-docs.cabal b/servant-docs/servant-docs.cabal index 0402b980b..f16c3a3c2 100644 --- a/servant-docs/servant-docs.cabal +++ b/servant-docs/servant-docs.cabal @@ -19,7 +19,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: CHANGELOG.md diff --git a/servant-foreign/servant-foreign.cabal b/servant-foreign/servant-foreign.cabal index 52dd98306..4a3ffbad1 100644 --- a/servant-foreign/servant-foreign.cabal +++ b/servant-foreign/servant-foreign.cabal @@ -21,7 +21,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2015-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: CHANGELOG.md @@ -74,7 +74,7 @@ test-suite spec -- Additional dependencies build-depends: - hspec >= 2.6.0 && <2.10 + hspec >= 2.6.0 && <2.11 build-tool-depends: - hspec-discover:hspec-discover >=2.6.0 && <2.10 + hspec-discover:hspec-discover >=2.6.0 && <2.11 default-language: Haskell2010 diff --git a/servant-http-streams/servant-http-streams.cabal b/servant-http-streams/servant-http-streams.cabal index 96044ff79..5f5cb3932 100644 --- a/servant-http-streams/servant-http-streams.cabal +++ b/servant-http-streams/servant-http-streams.cabal @@ -20,7 +20,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: CHANGELOG.md @@ -112,7 +112,7 @@ test-suite spec -- Additional dependencies build-depends: entropy >= 0.4.1.3 && < 0.5 - , hspec >= 2.6.0 && < 2.10 + , hspec >= 2.6.0 && < 2.11 , HUnit >= 1.6.0.0 && < 1.7 , network >= 2.8.0.0 && < 3.2 , QuickCheck >= 2.12.6.1 && < 2.15 @@ -120,7 +120,7 @@ test-suite spec , servant-server == 0.19.* build-tool-depends: - hspec-discover:hspec-discover >= 2.6.0 && < 2.10 + hspec-discover:hspec-discover >= 2.6.0 && < 2.11 test-suite readme type: exitcode-stdio-1.0 diff --git a/servant-server/servant-server.cabal b/servant-server/servant-server.cabal index d3c593dce..3de3d3829 100644 --- a/servant-server/servant-server.cabal +++ b/servant-server/servant-server.cabal @@ -23,7 +23,7 @@ author: Servant Contributors maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.3 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: CHANGELOG.md @@ -159,7 +159,7 @@ test-suite spec build-depends: aeson >= 1.4.1.0 && < 3 , directory >= 1.3.0.0 && < 1.4 - , hspec >= 2.6.0 && < 2.10 + , hspec >= 2.6.0 && < 2.11 , hspec-wai >= 0.10.1 && < 0.12 , QuickCheck >= 2.12.6.1 && < 2.15 , should-not-typecheck >= 2.1.0 && < 2.2 @@ -167,4 +167,4 @@ test-suite spec , wai-extra >= 3.0.24.3 && < 3.2 build-tool-depends: - hspec-discover:hspec-discover >= 2.6.0 && <2.10 + hspec-discover:hspec-discover >= 2.6.0 && <2.11 diff --git a/servant-swagger/servant-swagger.cabal b/servant-swagger/servant-swagger.cabal index a8b15e020..2e2e40212 100644 --- a/servant-swagger/servant-swagger.cabal +++ b/servant-swagger/servant-swagger.cabal @@ -28,7 +28,7 @@ maintainer: haskell-servant-maintainers@googlegroups.com copyright: (c) 2015-2018, Servant contributors category: Web, Servant, Swagger build-type: Custom -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 extra-source-files: README.md diff --git a/servant/servant.cabal b/servant/servant.cabal index 20df6ab8c..19ea3d5a7 100644 --- a/servant/servant.cabal +++ b/servant/servant.cabal @@ -20,7 +20,7 @@ maintainer: haskell-servant-maintainers@googlegroups.com copyright: 2014-2016 Zalora South East Asia Pte Ltd, 2016-2019 Servant Contributors build-type: Simple -tested-with: GHC ==8.6.5 || ==8.8.4 || ==8.10.2 || ==9.0.1 +tested-with: GHC==8.6.5, GHC==8.8.4, GHC ==8.10.7, GHC ==9.0.2, GHC ==9.2.7, GHC ==9.4.4 , GHCJS ==8.6.0.1 extra-source-files: @@ -167,9 +167,9 @@ test-suite spec -- Additional dependencies build-depends: - hspec >= 2.6.0 && < 2.10 + hspec >= 2.6.0 && < 2.11 , QuickCheck >= 2.12.6.1 && < 2.15 , quickcheck-instances >= 0.3.19 && < 0.4 build-tool-depends: - hspec-discover:hspec-discover >= 2.6.0 && < 2.10 + hspec-discover:hspec-discover >= 2.6.0 && < 2.11 diff --git a/stack.yaml b/stack.yaml index 9daaa278b..76402522e 100644 --- a/stack.yaml +++ b/stack.yaml @@ -1,4 +1,5 @@ -resolver: lts-18.5 +resolver: nightly-2023-04-14 + packages: - servant-client-core/ - servant-client/ @@ -17,4 +18,5 @@ packages: # - doc/tutorial/ extra-deps: -- hspec-wai-0.10.1 +- hspec-wai-0.11.1 +- pipes-safe-2.3.4 diff --git a/stack.yaml.lock b/stack.yaml.lock index ce72109b1..f534e8104 100644 --- a/stack.yaml.lock +++ b/stack.yaml.lock @@ -5,15 +5,22 @@ packages: - completed: - hackage: hspec-wai-0.10.1@sha256:56dd9ec1d56f47ef1946f71f7cbf070e4c285f718cac1b158400ae5e7172ef47,2290 + hackage: hspec-wai-0.11.1@sha256:fe359f4af85d7a09ba3d67a11ff3a2e29ec09aa6156ec19cfb163b0672d4432b,2237 pantry-tree: + sha256: cf0ea54386c0c631430391c46f26b55882e7d59d98ff74430951e730f25603cc size: 809 - sha256: 17af1c2e709cd84bfda066b9ebb04cdde7f92660c51a1f7401a1e9f766524e93 original: - hackage: hspec-wai-0.10.1 + hackage: hspec-wai-0.11.1 +- completed: + hackage: pipes-safe-2.3.4@sha256:1e4be771d7998251be7890536a3d3d31e5c93118737bed1d8a19505ec6130256,1890 + pantry-tree: + sha256: a82914f8221ffa6df9b3f56dfe12a702ed06cd317ae04af259ec4842b451ab2e + size: 380 + original: + hackage: pipes-safe-2.3.4 snapshots: - completed: - size: 585817 - url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/lts/18/5.yaml - sha256: 22d24d0dacad9c1450b9a174c28d203f9bb482a2a8da9710a2f2a9f4afee2887 - original: lts-18.5 + sha256: 8cf0695c568d7135f24b248c328bc80c32601b0c3a469aa5151196580781d84e + size: 604751 + url: https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots/master/nightly/2023/4/14.yaml + original: nightly-2023-04-14