Skip to content

Commit

Permalink
harePackages.hare: fix evaluation for riscv
Browse files Browse the repository at this point in the history
  • Loading branch information
NickCao committed Aug 13, 2022
1 parent 793bbf3 commit 3133c97
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/compilers/hare/hare/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ stdenv.mkDerivation (finalAttrs: {
arch =
if stdenv.isx86_64 then "x86_64"
else if stdenv.isAarch64 then "aarch64"
else if stdenv.isRiscV64 then "riscv64"
else if stdenv.hostPlatform.isRiscV && stdenv.is64bit then "riscv64"
else "unsupported";
platform =
if stdenv.isLinux then "linux"
Expand Down

0 comments on commit 3133c97

Please sign in to comment.