Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions nix/cimake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,11 @@ export NIX_CONFIG=$(cat \
index-state = "2021-07-01T00:00:00Z";
ghc-ver = "ghc901";
};
hackage-9-02 = {
resolver = "hackage";
index-state = "2021-11-01T00:00:00Z";
ghc-ver = "ghc921";
};
stackage-8-06 = {
resolver = "stackage";
stackFile = "stack-8.6.yaml";
Expand Down
6 changes: 3 additions & 3 deletions pqueue.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ maintainer: Lennart Spitzner <hexagoxel@hexagoxel.de>
bug-reports: https://github.com/lspitzner/pqueue/issues
build-type: Simple
cabal-version: >= 1.10
tested-with: GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.1
tested-with: GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.7, GHC == 9.0.1, GHC == 9.2.1
extra-source-files:
include/Typeable.h
CHANGELOG.md
Expand All @@ -26,7 +26,7 @@ library
default-language:
Haskell2010
build-depends:
{ base >= 4.8 && < 4.16
{ base >= 4.8 && < 4.17
, deepseq >= 1.3 && < 1.5
}
exposed-modules:
Expand Down Expand Up @@ -60,7 +60,7 @@ test-Suite test
type: exitcode-stdio-1.0
main-is: PQueueTests.hs
build-depends:
{ base >= 4.8 && < 4.16
{ base >= 4.8 && < 4.17
, deepseq >= 1.3 && < 1.5
, QuickCheck >= 2.5 && < 3
, pqueue
Expand Down