Skip to content

Commit

Permalink
Merge branch 'main' into luca_joss/update-osmosis-v24
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Apr 15, 2024
2 parents 6ea652a + 5e1ca8a commit 8b03823
Show file tree
Hide file tree
Showing 4 changed files with 40 additions and 0 deletions.
18 changes: 18 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@
gaia-main-src.url = "github:cosmos/gaia";
gaia-main-src.flake = false;

gaia15-src.url = "github:cosmos/gaia/v15.2.0";
gaia15-src.flake = false;

gaia14-src.url = "github:cosmos/gaia/v14.0.0";
gaia14-src.flake = false;

Expand Down
4 changes: 4 additions & 0 deletions modules/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@
type = "app";
program = "${packages.gaia14}/bin/gaiad";
};
gaia15 = {
type = "app";
program = "${packages.gaia15}/bin/gaiad";
};
gaia-main = {
type = "app";
program = "${packages.gaia-main}/bin/gaiad";
Expand Down
15 changes: 15 additions & 0 deletions packages/gaia.nix
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,21 @@
# Tests have to be disabled because they require Docker to run
doCheck = false;
};

gaia15 = {
name = "gaia";
vendorHash = "sha256-3n/tBOEwM9gvrLikJTJN7vzwVL9td+0+2yqgS7jzRd0=";
version = "v15.2.0";
goVersion = "1.20";
src = gaia15-src;
rev = gaia15-src.rev;
tags = ["netgo"];
engine = "cometbft/cometbft";
proxyVendor = true;

# Tests have to be disabled because they require Docker to run
doCheck = false;
};
};
in
gaias // {gaia-main = gaias.gaia8;}

0 comments on commit 8b03823

Please sign in to comment.