mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 05:44:13 +00:00
Merge pull request #186427 from NickCao/hare
harePackages.hare: fix evaluation for riscv
This commit is contained in:
commit
3d4de2ae3e
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user