An open API service indexing awesome lists of open source software.

https://github.com/doglooksgood/sui-overlay

Sui blockchain overlay
https://github.com/doglooksgood/sui-overlay

Last synced: 5 months ago
JSON representation

Sui blockchain overlay

Awesome Lists containing this project

README

          

* sui-overlay

The binary releases of Sui blockchain.

* Usages

The example usage with flake.

#+begin_src nix
{

inputs = {
nixpkgs = { url = "github:NixOS/nixpkgs/nixos-24.05"; };
flake-utils = { url = "github:numtide/flake-utils"; };
sui-overlay = { url = "github:doglooksgood/sui-overlay"; };
};

outputs = { self, nixpkgs, flake-utils, sui-overlay }:
flake-utils.lib.eachDefaultSystem (system:
let
overlays = [ sui-overlay.overlays.${system}.default ];
pkgs = import nixpkgs { inherit system overlays; };
in
{
devShell = pkgs.mkShell {
buildInputs = with pkgs; [
sui-devnet # or sui-testnet, sui-mainnet
# other stuff
];
};
}
);

...
}
#+end_src