Skip to content

Commit

Permalink
Merge pull request #186427 from NickCao/hare
Browse files Browse the repository at this point in the history
harePackages.hare: fix evaluation for riscv
  • Loading branch information
bobby285271 authored Aug 25, 2022
2 parents 875ec51 + 3133c97 commit 3d4de2a
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 3d4de2a

Please sign in to comment.