File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 78
78
hydraJobs = forAllSystems
79
79
( pkgs :
80
80
# project's hydraJobs
81
- pkgs . nix-tools-unchecked . project . flake' . hydraJobs
81
+ pkgs . nix-tools-eval-on-linux . project . flake' . hydraJobs
82
82
# tarballs with static builds.
83
83
// lib . optionalAttrs ( pkgs . buildPlatform . system == "x86_64-linux" )
84
84
{ binary-tarball = mkTarball pkgs . pkgsCross . musl64 ; }
Original file line number Diff line number Diff line change 9
9
10
10
nix-tools-unchecked = nix-tools-set { } ;
11
11
12
+ nix-tools-eval-on-linux = nix-tools-set {
13
+ evalSystem = builtins . currentSystem or "x86_64-linux" ;
14
+ } ;
15
+
12
16
nix-tools-set = args :
13
17
let
14
18
project = final . haskell-nix . cabalProject'
23
27
# tests need to fetch hackage
24
28
configureArgs = final . lib . mkDefault "--disable-tests" ;
25
29
26
- evalSystem = builtins . currentSystem or "x86_64-linux" ;
27
-
28
30
# Tools to include in the development shell
29
31
shell . tools . cabal = "latest" ;
30
32
}
83
85
toolset // warning ;
84
86
in
85
87
{
86
- inherit nix-tools nix-tools-unchecked nix-tools-set ;
88
+ inherit nix-tools nix-tools-unchecked nix-tools-eval-on-linux nix-tools- set;
87
89
}
You can’t perform that action at this time.
0 commit comments