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

+12 -14
+1 -1
nixos/tests/all-tests.nix
··· 245 245 haproxy = handleTest ./haproxy.nix {}; 246 246 hardened = handleTest ./hardened.nix {}; 247 247 healthchecks = handleTest ./web-apps/healthchecks.nix {}; 248 - hbase1 = handleTest ./hbase.nix { package=pkgs.hbase1; }; 249 248 hbase2 = handleTest ./hbase.nix { package=pkgs.hbase2; }; 249 + hbase_2_4 = handleTest ./hbase.nix { package=pkgs.hbase_2_4; }; 250 250 hbase3 = handleTest ./hbase.nix { package=pkgs.hbase3; }; 251 251 hedgedoc = handleTest ./hedgedoc.nix {}; 252 252 herbstluftwm = handleTest ./herbstluftwm.nix {};
+9 -10
pkgs/servers/hbase/default.nix
··· 38 38 }; 39 39 in 40 40 { 41 - hbase_1_7 = common { 42 - version = "1.7.1"; 43 - hash = "sha256-DrH2G79QLT8L0YTTmAGC9pUWU8semSaTOsrsQRCI2rY="; 44 - jdk = jdk8_headless; 45 - tests.standalone = nixosTests.hbase1; 41 + hbase_2_4 = common { 42 + version = "2.4.15"; 43 + hash = "sha256-KJXpfQ91POVd7ZnKQyIX5qzX4JIZqh3Zn2Pz0chW48g="; 44 + tests.standalone = nixosTests.hbase_2_4; 46 45 }; 47 - hbase_2_4 = common { 48 - version = "2.4.11"; 49 - hash = "sha256-m0vjUtPaj8czHHh+rQNJJgrFAM744cHd06KE0ut7QeU="; 46 + hbase_2_5 = common { 47 + version = "2.5.1"; 48 + hash = "sha256-ddSa4q43PSJv1W4lzzaXfv4LIThs4n8g8wYufHgsZVE="; 50 49 tests.standalone = nixosTests.hbase2; 51 50 }; 52 51 hbase_3_0 = common { 53 - version = "3.0.0-alpha-2"; 54 - hash = "sha256-QPvgO1BeFWvMT5PdUm/SL92ZgvSvYIuJbzolbBTenz4="; 52 + version = "3.0.0-alpha-3"; 53 + hash = "sha256-TxuiUHc2pTb9nBth1H2XrDRLla2vqM+e1uBU+yY2/EM="; 55 54 tests.standalone = nixosTests.hbase3; 56 55 }; 57 56 }
+2 -3
pkgs/top-level/all-packages.nix
··· 23121 23121 23122 23122 hasura-cli = callPackage ../servers/hasura/cli.nix { }; 23123 23123 23124 - inherit (callPackage ../servers/hbase {}) hbase_1_7 hbase_2_4 hbase_3_0; 23125 - hbase1 = hbase_1_7; 23126 - hbase2 = hbase_2_4; 23124 + inherit (callPackage ../servers/hbase {}) hbase_2_4 hbase_2_5 hbase_3_0; 23125 + hbase2 = hbase_2_5; 23127 23126 hbase3 = hbase_3_0; 23128 23127 hbase = hbase2; # when updating, point to the latest stable release 23129 23128