Skip to content

Commit

Permalink
Add Gaia v17.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ljoss17 committed Jun 10, 2024
1 parent 9a18b54 commit c56259c
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;

gaia17-src.url = "github:cosmos/gaia/v17.2.0";
gaia17-src.flake = false;

gaia15-src.url = "github:cosmos/gaia/v15.2.0";
gaia15-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 @@ -90,6 +90,10 @@
type = "app";
program = "${packages.gaia15}/bin/gaiad";
};
gaia17 = {
type = "app";
program = "${packages.gaia17}/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 @@ -162,6 +162,21 @@
# Tests have to be disabled because they require Docker to run
doCheck = false;
};

gaia17 = {
name = "gaia";
vendorHash = "sha256-gDzq+Jfs5EyH0tbeBzkz3xR75t324yaWLRhw59U8aRI=";
version = "v17.2.0";
goVersion = "1.21";
src = gaia17-src;
rev = gaia17-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 c56259c

Please sign in to comment.