flake.nix: Add riscv64-linux

This commit is contained in:
Zhaofeng Li 2023-12-18 14:50:33 -07:00
parent 7b133bca83
commit b12e485ef7

View file

@ -20,7 +20,7 @@
};
outputs = { self, nixpkgs, nixpkgs-stable, flake-utils, crane, ... }: let
supportedSystems = flake-utils.lib.defaultSystems;
supportedSystems = flake-utils.lib.defaultSystems ++ [ "riscv64-linux" ];
makeCranePkgs = pkgs: let
craneLib = crane.mkLib pkgs;