Skip to content
Open
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
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
flake-utils.url = "github:numtide/flake-utils";
};

Expand Down
9 changes: 8 additions & 1 deletion integer-types/integer-types.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@ cabal-version: 3.0
name: integer-types
version: 0.1.4.1

tested-with:
GHC == 9.2.*,
GHC == 9.4.*,
GHC == 9.6.*,
GHC == 9.8.*,
GHC == 9.10.*

category: Numeric
synopsis: Integer, Natural, and Positive

Expand Down Expand Up @@ -35,7 +42,7 @@ common base
ViewPatterns

build-depends:
, base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19
, base ^>= 4.16 || ^>= 4.17 || ^>= 4.18 || ^>= 4.19 || ^>= 4.20
, deepseq ^>= 1.4.6 || ^>= 1.5
, hashable ^>= 1.4.1
, quaalude ^>= 0.0
Expand Down
8 changes: 7 additions & 1 deletion nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,15 @@ let
# x = new.callPackage ./haskell/x.nix { };
};
};
ghc-9-10 = makeTestConfiguration {
ghc = pkgs.haskell.packages.ghc910;
overrides = new: old: {
# x = new.callPackage ./haskell/x.nix { };
};
};
all = pkgs.symlinkJoin {
name = "integer-types-tests";
paths = [ ghc-9-2 ghc-9-4 ghc-9-6 ghc-9-8 ];
paths = [ ghc-9-2 ghc-9-4 ghc-9-6 ghc-9-8 ghc-9-10 ];
};
};

Expand Down