We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1ebbe68 + 756f58b commit cf8c740Copy full SHA for cf8c740
flake.nix
@@ -5,7 +5,13 @@
5
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
6
inputs.flake-utils.url = "github:numtide/flake-utils";
7
8
- outputs = inputs: inputs.flake-utils.lib.eachDefaultSystem
+ outputs = inputs: inputs.flake-utils.lib.eachSystem [
9
+ "x86_64-linux"
10
+ "aarch64-linux"
11
+ "riscv64-linux"
12
+ "x86_64-darwin"
13
+ "aarch64-darwin"
14
+ ]
15
(system:
16
let
17
pkgs = inputs.nixpkgs.legacyPackages.${system};
tests/extra/language.hare.nix
@@ -2,7 +2,8 @@
2
pkgs,
3
devshell,
4
runTest,
-}: {
+}:
+pkgs.lib.optionalAttrs (!pkgs.hostPlatform.isDarwin) {
# Basic test
language-hare-1 = let
shell = devshell.mkShell {
0 commit comments