0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Merge pull request #258207 from aaronjheng/cassandra

cassandra: use cassandra_4
This commit is contained in:
Mario Rodas 2023-10-31 07:17:17 -05:00 committed by GitHub
commit af211100e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View file

@ -38,6 +38,8 @@
true`. This is generally safe behavior, but for anyone needing to opt out from
the check `users.users.${USERNAME}.ignoreShellProgramCheck = true` will do the job.
- Cassandra now defaults to 4.x, updated from 3.11.x.
## New Services {#sec-release-23.11-new-services}
- [MCHPRS](https://github.com/MCHPR/MCHPRS), a multithreaded Minecraft server built for redstone. Available as [services.mchprs](#opt-services.mchprs.enable).

View file

@ -26227,7 +26227,7 @@ with pkgs;
jre = pkgs.jdk11_headless;
python = python3;
};
cassandra = cassandra_3_11;
cassandra = cassandra_4;
cassandra-cpp-driver = callPackage ../development/libraries/cassandra-cpp-driver/default.nix { };