File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Filter options
Expand file tree Collapse file tree 3 files changed +8
-3
lines changed
Original file line number Diff line number Diff line change 139
139
# supported by haskell.nix, e.g. with remote builders, in order to check this flake.
140
140
# If you want to run the tests for just your platform, run `./test/tests.sh` or
141
141
# `nix-build -A checks.$PLATFORM`
142
- } // flake-utils . lib . eachSystem [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ] ( system : rec {
142
+ } // flake-utils . lib . eachSystem [
143
+ "x86_64-linux"
144
+ "x86_64-darwin"
145
+ # TODO switch back on when ci.iog.io has builders for aarch64-linux
146
+ # "aarch64-linux"
147
+ "aarch64-darwin" ] ( system : rec {
143
148
legacyPackages = ( self . internal . compat { inherit system ; } ) . pkgs ;
144
149
legacyPackagesUnstable = ( self . internal . compat { inherit system ; } ) . pkgs-unstable ;
145
150
Original file line number Diff line number Diff line change 2
2
# This is a template created by `hix init`
3
3
inputs . haskellNix . url = "github:input-output-hk/haskell.nix" ;
4
4
inputs . nixpkgs . follows = "haskellNix/nixpkgs-unstable" ;
5
- inputs . flake-utils . url = "github:numtide /flake-utils" ;
5
+ inputs . flake-utils . follows = "haskellNix /flake-utils" ;
6
6
outputs = { self , nixpkgs , flake-utils , haskellNix } :
7
7
let
8
8
supportedSystems = [
Original file line number Diff line number Diff line change 4
4
description = "Default hix flake" ;
5
5
inputs . haskellNix . url = "github:input-output-hk/haskell.nix" ;
6
6
inputs . nixpkgs . follows = "haskellNix/nixpkgs-unstable" ;
7
- inputs . flake-utils . url = "github:numtide /flake-utils" ;
7
+ inputs . flake-utils . follows = "haskellNix /flake-utils" ;
8
8
inputs . src . flake = false ;
9
9
outputs = { self , src , nixpkgs , flake-utils , haskellNix } :
10
10
flake-utils . lib . eachSystem [ "EVAL_SYSTEM" ] ( system :
You can’t perform that action at this time.
0 commit comments