Skip to content

Commit b4bfea8

Browse files
committed
version bumps
1 parent 10c10b9 commit b4bfea8

File tree

7 files changed

+53
-123
lines changed

7 files changed

+53
-123
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/result

default.nix

-52
This file was deleted.

flake.lock

+9-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+33-56
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,47 @@
11
{
22
inputs = {
3-
"nixos-23.05".url = "github:NixOS/nixpkgs/nixos-23.05";
3+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
44
flake-utils.url = "github:numtide/flake-utils";
55
};
6-
outputs = inputs@{ self, ... }:
7-
let packageName = "lazy-async";
8-
in inputs.flake-utils.lib.eachDefaultSystem (system:
6+
7+
outputs = inputs:
8+
inputs.flake-utils.lib.eachDefaultSystem (system:
99
let
10-
nixpkgs = {
11-
"nixos-23.05" = import inputs."nixos-23.05" { inherit system; };
12-
};
13-
pkgs = nixpkgs."nixos-23.05";
14-
project = pkgs.haskellPackages.developPackage {
15-
root = ./lazy-async;
16-
name = packageName;
17-
};
10+
pkgs = import inputs.nixpkgs { inherit system; };
11+
1812
inherit (pkgs.lib) fold composeExtensions concatMap attrValues;
1913

14+
hls = pkgs.haskell-language-server.override {
15+
supportedGhcVersions = [ "98" ];
16+
};
17+
2018
combineOverrides = old:
2119
fold composeExtensions (old.overrides or (_: _: { }));
2220

23-
in
24-
{
25-
defaultPackage = self.packages.${system}.${packageName};
26-
27-
packages = {
28-
"${packageName}" = project;
29-
30-
testConfigurations =
31-
let
32-
33-
inherit (pkgs.haskell.lib) dontCheck;
34-
35-
makeTestConfiguration =
36-
let defaultPkgs = pkgs;
37-
in { pkgs ? defaultPkgs, ghcVersion, overrides ? new: old: { } }:
38-
let inherit (pkgs.haskell.lib) dontCheck packageSourceOverrides;
39-
in (pkgs.haskell.packages.${ghcVersion}.override (old: {
40-
overrides = combineOverrides old [
41-
(packageSourceOverrides {
42-
lazy-async = ./lazy-async;
43-
})
44-
overrides
45-
];
46-
47-
})).lazy-async;
21+
in rec {
22+
23+
packages = let
24+
makeTestConfiguration = { ghcVersion, overrides ? new: old: { } }:
25+
let inherit (pkgs.haskell.lib) dontCheck packageSourceOverrides;
26+
in (pkgs.haskell.packages.${ghcVersion}.override (old: {
27+
overrides = combineOverrides old [
28+
(packageSourceOverrides { lazy-async = ./lazy-async; })
29+
overrides
30+
];
31+
})).lazy-async;
32+
in rec {
33+
ghc-9-6 = makeTestConfiguration { ghcVersion = "ghc96"; };
34+
ghc-9-8 = makeTestConfiguration { ghcVersion = "ghc98"; };
35+
all = pkgs.symlinkJoin {
36+
name = "lazy-async-tests";
37+
paths = [ ghc-9-6 ghc-9-8 ];
38+
};
39+
};
4840

49-
in
50-
rec {
51-
ghc-9-0 = makeTestConfiguration {
52-
pkgs = nixpkgs."nixos-23.05";
53-
ghcVersion = "ghc90";
54-
};
55-
ghc-9-2 = makeTestConfiguration {
56-
pkgs = nixpkgs."nixos-23.05";
57-
ghcVersion = "ghc92";
58-
};
59-
ghc-9-4 = makeTestConfiguration {
60-
pkgs = nixpkgs."nixos-23.05";
61-
ghcVersion = "ghc94";
62-
};
63-
all = pkgs.symlinkJoin {
64-
name = packageName;
65-
paths = [ ghc-9-0 ghc-9-2 ghc-9-4 ];
66-
};
67-
};
41+
devShells.default = pkgs.mkShell {
42+
inputsFrom = [ packages.ghc-9-8.env ];
43+
buildInputs = [ pkgs.cabal-install ];
6844
};
45+
6946
});
7047
}

lazy-async/changelog.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### 1.0.0.3 (2025-01-21)
2+
3+
Version bumps
4+
15
### 1.0.0.2 (2023-01-10)
26

37
Support GHC 9.4

lazy-async/lazy-async.cabal

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cabal-version: 3.0
22

33
name: lazy-async
4-
version: 1.0.0.2
4+
version: 1.0.0.3
55
synopsis: Asynchronous actions that don't start right away
66
category: Concurrency
77

@@ -42,13 +42,13 @@ common language
4242

4343
common dependencies
4444
build-depends:
45-
, base ^>= 4.15 || ^>= 4.16 || ^>= 4.17
45+
, base ^>= 4.18 || ^>= 4.19
4646
, exceptions ^>= 0.10.4
4747
, lifted-async ^>= 0.10.2
4848
, monad-control ^>= 1.0.3
49-
, rank2classes ^>= 1.4.4
49+
, rank2classes ^>= 1.5
5050
, stm ^>= 2.5
51-
, transformers ^>= 0.5.6
51+
, transformers ^>= 0.6
5252
, transformers-base ^>= 0.4.6
5353

5454
library
@@ -90,7 +90,7 @@ test-suite test
9090
OverloadedStrings
9191
TemplateHaskell
9292
build-depends:
93-
, hedgehog ^>= 1.0.5 || ^>= 1.1 || ^>= 1.2
93+
, hedgehog ^>= 1.3 || ^>= 1.4 || ^>= 1.5
9494
, lazy-async
9595
, optics-core ^>= 0.4.1
9696
, optics-th ^>= 0.4.1

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
To build and test with all supported compiler versions:
22

3-
nix build .#testConfigurations.all --no-link
3+
nix build .#all

0 commit comments

Comments
 (0)