hbase: version upgrades
- 2.4.17 -> 2.4.18 - 2.5.4 -> 2.5.9 - init 2.6.0 - 3.0.0-alpha-3 -> 3.0.0-beta-1
This commit is contained in:
parent
e33ec60b88
commit
aa794162ba
@ -400,6 +400,7 @@ in {
|
|||||||
headscale = handleTest ./headscale.nix {};
|
headscale = handleTest ./headscale.nix {};
|
||||||
healthchecks = handleTest ./web-apps/healthchecks.nix {};
|
healthchecks = handleTest ./web-apps/healthchecks.nix {};
|
||||||
hbase2 = handleTest ./hbase.nix { package=pkgs.hbase2; };
|
hbase2 = handleTest ./hbase.nix { package=pkgs.hbase2; };
|
||||||
|
hbase_2_5 = handleTest ./hbase.nix { package=pkgs.hbase_2_5; };
|
||||||
hbase_2_4 = handleTest ./hbase.nix { package=pkgs.hbase_2_4; };
|
hbase_2_4 = handleTest ./hbase.nix { package=pkgs.hbase_2_4; };
|
||||||
hbase3 = handleTest ./hbase.nix { package=pkgs.hbase3; };
|
hbase3 = handleTest ./hbase.nix { package=pkgs.hbase3; };
|
||||||
hddfancontrol = handleTest ./hddfancontrol.nix {};
|
hddfancontrol = handleTest ./hddfancontrol.nix {};
|
||||||
|
@ -39,18 +39,23 @@ let common = { version, hash, jdk ? jdk11_headless, tests }:
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
hbase_2_4 = common {
|
hbase_2_4 = common {
|
||||||
version = "2.4.17";
|
version = "2.4.18";
|
||||||
hash = "sha256-1JT57kpp+dqoXY5ZZig1nHDtSqvfLjEWviu73J7hKj0=";
|
hash = "sha256-zYrHAxzlPRrRchHGVp3fhQT0BD0+wavZ4cAWncrv+MQ=";
|
||||||
tests.standalone = nixosTests.hbase_2_4;
|
tests.standalone = nixosTests.hbase_2_4;
|
||||||
};
|
};
|
||||||
hbase_2_5 = common {
|
hbase_2_5 = common {
|
||||||
version = "2.5.4";
|
version = "2.5.9";
|
||||||
hash = "sha256-/7kp0f/K8DCeFheDPzs2ZFqcnZwQtH1rrMx+UMbQ7TM=";
|
hash = "sha256-rJGeJ9zmUn28q1Sfk5cdEdEZxbAnvFjRjdcTCx9x1Qc=";
|
||||||
|
tests.standalone = nixosTests.hbase_2_5;
|
||||||
|
};
|
||||||
|
hbase_2_6 = common {
|
||||||
|
version = "2.6.0";
|
||||||
|
hash = "sha256-zjQ5HgUCiHmrMQuyMN4IAuLR0fVrJ+YKDUfPQb05Dp4=";
|
||||||
tests.standalone = nixosTests.hbase2;
|
tests.standalone = nixosTests.hbase2;
|
||||||
};
|
};
|
||||||
hbase_3_0 = common {
|
hbase_3_0 = common {
|
||||||
version = "3.0.0-alpha-3";
|
version = "3.0.0-beta-1";
|
||||||
hash = "sha256-TxuiUHc2pTb9nBth1H2XrDRLla2vqM+e1uBU+yY2/EM=";
|
hash = "sha256-lmeaH2gDP6sBwZpzROKhR2Je7dcrwnq7qlMUh0B5fZs=";
|
||||||
tests.standalone = nixosTests.hbase3;
|
tests.standalone = nixosTests.hbase3;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -25584,8 +25584,8 @@ with pkgs;
|
|||||||
|
|
||||||
hasura-cli = callPackage ../servers/hasura/cli.nix { };
|
hasura-cli = callPackage ../servers/hasura/cli.nix { };
|
||||||
|
|
||||||
inherit (callPackage ../servers/hbase {}) hbase_2_4 hbase_2_5 hbase_3_0;
|
inherit (callPackage ../servers/hbase {}) hbase_2_4 hbase_2_5 hbase_2_6 hbase_3_0;
|
||||||
hbase2 = hbase_2_5;
|
hbase2 = hbase_2_6;
|
||||||
hbase3 = hbase_3_0;
|
hbase3 = hbase_3_0;
|
||||||
hbase = hbase2; # when updating, point to the latest stable release
|
hbase = hbase2; # when updating, point to the latest stable release
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user