Skip to content

Commit

Permalink
Merge pull request #321 from numtide/riscv64-support
Browse files Browse the repository at this point in the history
add riscv64 support
  • Loading branch information
Mic92 authored Jul 25, 2024
2 parents 1ebbe68 + 756f58b commit cf8c740
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,13 @@
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
inputs.flake-utils.url = "github:numtide/flake-utils";

outputs = inputs: inputs.flake-utils.lib.eachDefaultSystem
outputs = inputs: inputs.flake-utils.lib.eachSystem [
"x86_64-linux"
"aarch64-linux"
"riscv64-linux"
"x86_64-darwin"
"aarch64-darwin"
]
(system:
let
pkgs = inputs.nixpkgs.legacyPackages.${system};
Expand Down
3 changes: 2 additions & 1 deletion tests/extra/language.hare.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
pkgs,
devshell,
runTest,
}: {
}:
pkgs.lib.optionalAttrs (!pkgs.hostPlatform.isDarwin) {
# Basic test
language-hare-1 = let
shell = devshell.mkShell {
Expand Down

0 comments on commit cf8c740

Please sign in to comment.