Skip to content

Commit 16de1f4

Browse files
authored
build(nix): allow aarch64 to run flake (#175)
* build(nix): allow aarch64 to run flake * chore: revert formatting for smaller diff * chore: add back newline for smaller diff * chore: fix line ending for smaller diff
1 parent 4b91413 commit 16de1f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
};
88

99
outputs = inputs@{ self, nixpkgs, flake-utils, ... }:
10-
flake-utils.lib.eachSystem [ "x86_64-linux" ] (system: let
10+
flake-utils.lib.eachSystem [ "x86_64-linux" "aarch64-darwin" ] (system: let
1111
pkgs = nixpkgs.legacyPackages.${system};
1212
in rec {
1313
packages.goboscript = pkgs.callPackage ./default.nix { };
@@ -20,4 +20,4 @@
2020
buildInputs = with pkgs; [ cargo rustc git ];
2121
};
2222
});
23-
}
23+
}

0 commit comments

Comments
 (0)