File tree Expand file tree Collapse file tree 3 files changed +20
-14
lines changed Expand file tree Collapse file tree 3 files changed +20
-14
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,14 @@ _finalNixpkgs: prevNixpkgs: let
1111
1212 circom = prevNixpkgs . callPackage ./packages/circom/default.nix { } ;
1313 circ = prevNixpkgs . callPackage ./packages/circ/default.nix { } ;
14+
15+ wasmd = prevNixpkgs . callPackage ./packages/wasmd/default.nix { } ;
1416in {
1517 metacraft-labs = rec {
1618 solana = solana-full-sdk ;
1719 inherit cosmos-theta-testnet ;
1820 inherit circom ;
1921 inherit circ ;
22+ inherit wasmd ;
2023 } ;
2124}
Original file line number Diff line number Diff line change 77} :
88buildGoModule rec {
99 pname = "wasmd" ;
10- version = "1.0.0 " ;
10+ version = "0.14.99 " ;
1111
1212 src = fetchFromGitHub {
1313 owner = "CosmWasm" ;
Original file line number Diff line number Diff line change 11{ pkgs } :
22with pkgs ;
33 mkShell {
4- packages = [
5- # For priting the direnv banner
6- figlet
4+ packages =
5+ [
6+ # For priting the direnv banner
7+ figlet
78
8- # For formatting Nix files
9- alejandra
9+ # For formatting Nix files
10+ alejandra
1011
11- # Packages defined in this repo
12- metacraft-labs . cosmos-theta-testnet
13- metacraft-labs . circom
14- metacraft-labs . circ
15- ] ++ lib . optionals ( ! stdenv . isDarwin ) [
16- # Solana is still not compatible with macOS on M1
17- metacraft-labs . solana
18- ] ;
12+ # Packages defined in this repo
13+ metacraft-labs . cosmos-theta-testnet
14+ metacraft-labs . circom
15+ metacraft-labs . circ
16+ metacraft-labs . wasmd
17+ ]
18+ ++ lib . optionals ( ! stdenv . isDarwin ) [
19+ # Solana is still not compatible with macOS on M1
20+ metacraft-labs . solana
21+ ] ;
1922
2023 shellHook = ''
2124 figlet -w$COLUMNS "nix-blockchain-development"
You can’t perform that action at this time.
0 commit comments