Skip to content

Commit 66cc5c3

Browse files
EmilIvanichkovvzah
authored andcommitted
Post review fixes
1 parent f803aff commit 66cc5c3

File tree

3 files changed

+20
-14
lines changed

3 files changed

+20
-14
lines changed

overlay.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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 {};
1416
in {
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
}

packages/wasmd/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}:
88
buildGoModule rec {
99
pname = "wasmd";
10-
version = "1.0.0";
10+
version = "0.14.99";
1111

1212
src = fetchFromGitHub {
1313
owner = "CosmWasm";

shell.nix

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,24 @@
11
{pkgs}:
22
with 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"

0 commit comments

Comments
 (0)