mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
hbase: update versions and remove EoL version
- remove 1.7 - 2.4.11 -> 2.4.15 - init 2.5.1 - 3.0.0-alpha-2 -> 3.0.0-alpha-3
This commit is contained in:
parent
a56d2be899
commit
140bd1aef4
@ -245,8 +245,8 @@ in {
|
||||
haproxy = handleTest ./haproxy.nix {};
|
||||
hardened = handleTest ./hardened.nix {};
|
||||
healthchecks = handleTest ./web-apps/healthchecks.nix {};
|
||||
hbase1 = handleTest ./hbase.nix { package=pkgs.hbase1; };
|
||||
hbase2 = handleTest ./hbase.nix { package=pkgs.hbase2; };
|
||||
hbase_2_4 = handleTest ./hbase.nix { package=pkgs.hbase_2_4; };
|
||||
hbase3 = handleTest ./hbase.nix { package=pkgs.hbase3; };
|
||||
hedgedoc = handleTest ./hedgedoc.nix {};
|
||||
herbstluftwm = handleTest ./herbstluftwm.nix {};
|
||||
|
@ -38,20 +38,19 @@ let common = { version, hash, jdk ? jdk11_headless, tests }:
|
||||
};
|
||||
in
|
||||
{
|
||||
hbase_1_7 = common {
|
||||
version = "1.7.1";
|
||||
hash = "sha256-DrH2G79QLT8L0YTTmAGC9pUWU8semSaTOsrsQRCI2rY=";
|
||||
jdk = jdk8_headless;
|
||||
tests.standalone = nixosTests.hbase1;
|
||||
};
|
||||
hbase_2_4 = common {
|
||||
version = "2.4.11";
|
||||
hash = "sha256-m0vjUtPaj8czHHh+rQNJJgrFAM744cHd06KE0ut7QeU=";
|
||||
version = "2.4.15";
|
||||
hash = "sha256-KJXpfQ91POVd7ZnKQyIX5qzX4JIZqh3Zn2Pz0chW48g=";
|
||||
tests.standalone = nixosTests.hbase_2_4;
|
||||
};
|
||||
hbase_2_5 = common {
|
||||
version = "2.5.1";
|
||||
hash = "sha256-ddSa4q43PSJv1W4lzzaXfv4LIThs4n8g8wYufHgsZVE=";
|
||||
tests.standalone = nixosTests.hbase2;
|
||||
};
|
||||
hbase_3_0 = common {
|
||||
version = "3.0.0-alpha-2";
|
||||
hash = "sha256-QPvgO1BeFWvMT5PdUm/SL92ZgvSvYIuJbzolbBTenz4=";
|
||||
version = "3.0.0-alpha-3";
|
||||
hash = "sha256-TxuiUHc2pTb9nBth1H2XrDRLla2vqM+e1uBU+yY2/EM=";
|
||||
tests.standalone = nixosTests.hbase3;
|
||||
};
|
||||
}
|
||||
|
@ -23121,9 +23121,8 @@ with pkgs;
|
||||
|
||||
hasura-cli = callPackage ../servers/hasura/cli.nix { };
|
||||
|
||||
inherit (callPackage ../servers/hbase {}) hbase_1_7 hbase_2_4 hbase_3_0;
|
||||
hbase1 = hbase_1_7;
|
||||
hbase2 = hbase_2_4;
|
||||
inherit (callPackage ../servers/hbase {}) hbase_2_4 hbase_2_5 hbase_3_0;
|
||||
hbase2 = hbase_2_5;
|
||||
hbase3 = hbase_3_0;
|
||||
hbase = hbase2; # when updating, point to the latest stable release
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user