RISC-V: Difference between revisions

Onny (talk | contribs)
m a known binary cache has been discontinued
 
Line 121: Line 121:


== Binary cache ==
== Binary cache ==
Example configuration snippet which can be used to add two third-party binary caches with RISCV support<syntaxhighlight lang="nix">
Example configuration snippet which can be used to add a third-party binary cache with RISCV support<syntaxhighlight lang="nix">nix.settings = {
nix.settings = {
   substituters = [
   substituters = [
    "https://cache.nichi.co"
     "https://cache.ztier.in"
     "https://cache.ztier.in"
   ];
   ];
   trusted-public-keys = [
   trusted-public-keys = [
    "hydra.nichi.co-0:P3nkYHhmcLR3eNJgOAnHDjmQLkfqheGyhZ6GLrUVHwk="
     "cache.ztier.link-1:3P5j2ZB9dNgFFFVkCQWT3mh0E+S3rIWtZvoql64UaXM="
     "cache.ztier.link-1:3P5j2ZB9dNgFFFVkCQWT3mh0E+S3rIWtZvoql64UaXM="
   ];
   ];
Line 135: Line 132:
     "flakes"
     "flakes"
   ];
   ];
};
};</syntaxhighlight>Known third-party binary caches with RISCV support:
</syntaxhighlight>Known third-party binary caches with RISCV support
* [https://github.com/misuzu/nixos-vf2/blob/master/flake.nix#L3 misuzu]
* [https://github.com/misuzu/nixos-vf2/blob/master/flake.nix#L3 misuzu]
* [https://hydra.nichi.co/ by Nick Cao]


== NixOS Support ==
== NixOS Support ==