nearcore: mark as linux only for now

macos support is feasible but requires some testing: https://github.com/ZentriaMC/neard-nix/blob/master/neard.nix#L23
main
Jörg Thalheim 2 years ago
parent 5481179b6a
commit bd41737ab4
No known key found for this signature in database
  1. 4
      pkgs/applications/blockchains/nearcore/default.nix

@ -50,6 +50,8 @@ rustPlatform.buildRustPackage rec {
homepage = "https://github.com/near/nearcore";
license = licenses.gpl3;
maintainers = with maintainers; [ mic92 ];
platforms = platforms.unix;
# only x86_64 is supported in nearcore because of sse4+ support, macOS might
# be also possible
platforms = [ "x86_64-linux" ];
};
}

Loading…
Cancel
Save