Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

edk2: support RISC-V

EDK2 has a good support of RISC-V nowadays.

(cherry picked from commit 6a2ed3adf2d4e503676ca6dc16467ec88608eb7d)

authored by Raito Bezarius and committed by github-actions[bot] f1d97c98 99c10615

+3 -1
+3 -1
pkgs/development/compilers/edk2/default.nix
··· 21 "ARM" 22 else if stdenv.isAarch64 then 23 "AARCH64" 24 else 25 throw "Unsupported architecture"; 26 ··· 92 description = "Intel EFI development kit"; 93 homepage = "https://github.com/tianocore/tianocore.github.io/wiki/EDK-II/"; 94 license = licenses.bsd2; 95 - platforms = with platforms; aarch64 ++ arm ++ i686 ++ x86_64; 96 }; 97 98 passthru = {
··· 21 "ARM" 22 else if stdenv.isAarch64 then 23 "AARCH64" 24 + else if stdenv.hostPlatform.isRiscV64 then 25 + "RISCV64" 26 else 27 throw "Unsupported architecture"; 28 ··· 94 description = "Intel EFI development kit"; 95 homepage = "https://github.com/tianocore/tianocore.github.io/wiki/EDK-II/"; 96 license = licenses.bsd2; 97 + platforms = with platforms; aarch64 ++ arm ++ i686 ++ x86_64 ++ riscv64; 98 }; 99 100 passthru = {