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
- Host: GitHub
- URL: https://github.com/doglooksgood/sui-overlay
- Owner: DogLooksGood
- Created: 2023-07-09T13:35:42.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-15T08:24:33.000Z (over 1 year ago)
- Last Synced: 2025-06-03T15:45:25.338Z (about 1 year ago)
- Language: Nix
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
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