|
101 | 101 |
|
102 | 102 | # systems supported by haskell.nix
|
103 | 103 | systems = [
|
104 |
| -# "x86_64-linux" |
| 104 | + "x86_64-linux" |
105 | 105 | ] ++ (if runningHydraEvalTest then [ ] else [
|
106 |
| -# "x86_64-darwin" |
| 106 | + "x86_64-darwin" |
107 | 107 | "aarch64-darwin"
|
108 | 108 | ]);
|
109 | 109 |
|
|
252 | 252 | cf.defaultNix.hydraJobs;
|
253 | 253 | in
|
254 | 254 | self.allJobs.${system}
|
255 |
| -# // lib.optionalAttrs (ifdLevel > 2) |
256 |
| -# { nix-tools = nix-tools-hydraJobs.${system} or { }; } |
| 255 | + // lib.optionalAttrs (ifdLevel > 2) |
| 256 | + { nix-tools = nix-tools-hydraJobs.${system} or { }; } |
257 | 257 | );
|
258 | 258 |
|
259 | 259 | devShells = forEachSystemPkgs (pkgs:
|
|
286 | 286 | (
|
287 | 287 | let pkgs = nixpkgs.legacyPackages."x86_64-linux"; in
|
288 | 288 | {
|
289 |
| -# hydraJobs.nix-tools = pkgs.releaseTools.aggregate { |
290 |
| -# name = "nix-tools"; |
291 |
| -# constituents = (if runningHydraEvalTest then [ ] else [ |
292 |
| -# "aarch64-darwin.nix-tools.static.zipped.nix-tools-static" |
293 |
| -# "x86_64-darwin.nix-tools.static.zipped.nix-tools-static" |
294 |
| -# "aarch64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd" |
295 |
| -# "x86_64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd" |
296 |
| -# ]) ++ [ |
297 |
| -# "x86_64-linux.nix-tools.static.zipped.nix-tools-static" |
298 |
| -# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64" |
299 |
| -# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-no-ifd" |
300 |
| -# "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64-no-ifd" |
301 |
| -# (pkgs.writeText "gitrev" (self.rev or "0000000000000000000000000000000000000000")) |
302 |
| -# ]; |
303 |
| -# }; |
| 289 | + hydraJobs.nix-tools = pkgs.releaseTools.aggregate { |
| 290 | + name = "nix-tools"; |
| 291 | + constituents = (if runningHydraEvalTest then [ ] else [ |
| 292 | + "aarch64-darwin.nix-tools.static.zipped.nix-tools-static" |
| 293 | + "x86_64-darwin.nix-tools.static.zipped.nix-tools-static" |
| 294 | + "aarch64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd" |
| 295 | + "x86_64-darwin.nix-tools.static.zipped.nix-tools-static-no-ifd" |
| 296 | + ]) ++ [ |
| 297 | + "x86_64-linux.nix-tools.static.zipped.nix-tools-static" |
| 298 | + "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64" |
| 299 | + "x86_64-linux.nix-tools.static.zipped.nix-tools-static-no-ifd" |
| 300 | + "x86_64-linux.nix-tools.static.zipped.nix-tools-static-arm64-no-ifd" |
| 301 | + (pkgs.writeText "gitrev" (self.rev or "0000000000000000000000000000000000000000")) |
| 302 | + ]; |
| 303 | + }; |
304 | 304 | }
|
305 | 305 | )));
|
306 | 306 |
|
|
0 commit comments