File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change 6
6
, nixpkgsArgs ? haskellNix . nixpkgsArgs
7
7
, pkgs ? import nixpkgs nixpkgsArgs
8
8
, evalPackages ? import nixpkgs nixpkgsArgs
9
- # This version is used to make our GitHub Action runners happy
10
- # Using `nixpkgs-unstable` currently results in:
11
- # version `GLIBCXX_3.4.30' not found
12
- , nixpkgsForGitHubAction ? haskellNix . sources . nixpkgs-2211
13
- , pkgsForGitHubAction ? import nixpkgsForGitHubAction ( nixpkgsArgs // { inherit ( pkgs ) system ; } )
14
9
, ifdLevel ? 1000
15
10
, compiler-nix-name ? throw "No `compiler-nix-name` passed to build.nix"
16
11
, haskellNix ? ( import ./default.nix { } )
@@ -98,7 +93,7 @@ in rec {
98
93
nix-tools = haskell . nix-tools-unchecked ; # includes cabal-install and default-setup
99
94
} ;
100
95
check-materialization-concurrency = pkgs . buildPackages . callPackage ./scripts/check-materialization-concurrency/check.nix { } ;
101
- check-path-support = pkgsForGitHubAction . buildPackages . callPackage ./scripts/check-path-support.nix {
96
+ check-path-support = pkgs . buildPackages . callPackage ./scripts/check-path-support.nix {
102
97
inherit compiler-nix-name ;
103
98
} ;
104
99
} ;
You can’t perform that action at this time.
0 commit comments