Skip to content

Commit d9feb70

Browse files
Updates Flake Lock and bumps GHC to 9.2.4
1 parent 6e044bf commit d9feb70

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
ghc: ['8.10']
12+
ghc: ['8.10', '9.2']
1313
name: Haskell GHC ${{ matrix.ghc }}
1414
steps:
1515
- uses: actions/checkout@v2

flake.lock

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
nixConfig.bash-prompt = "[nix]λ ";
77

88
inputs = {
9-
nixpkgs.url = "github:NixOS/nixpkgs";
9+
nixpkgs.url =
10+
"github:NixOS/nixpkgs/00d73d5385b63e868bd11282fb775f6fe4921fb5";
1011
flake-utils.url = "github:numtide/flake-utils";
1112
};
1213

1314
outputs = { self, nixpkgs, flake-utils }:
1415
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system:
1516
let
1617
config = { };
17-
compilerVersion = "8107";
18+
compilerVersion = "924";
1819
compiler = "ghc" + compilerVersion;
1920
overlays = [
2021
(final: prev: {

matrix-client/matrix-client.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ category: Network
2222
build-type: Simple
2323
extra-doc-files: CHANGELOG.md
2424
extra-source-files: test/data/*.json
25-
tested-with: GHC == 8.10.4
25+
tested-with: GHC == 8.10.7, GHC == 9.2.4
2626

2727
source-repository head
2828
type: git

0 commit comments

Comments
 (0)