Skip to content

Commit

Permalink
add riscv64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
Mic92 committed Jul 25, 2024
1 parent 1ebbe68 commit 9642e45
Showing 1 changed file with 7 additions and 1 deletion.
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

0 comments on commit 9642e45

Please sign in to comment.