Commit ab823e3a authored by Robert Hensing's avatar Robert Hensing Committed by Manuel Bärenz
Browse files

cassandra_4: init

parent 5775cfa4
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -113,6 +113,7 @@ in {
  calibre-web = handleTest ./calibre-web.nix {};
  cassandra_3_0 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_0; };
  cassandra_3_11 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_3_11; };
  cassandra_4 = handleTest ./cassandra.nix { testPackage = pkgs.cassandra_4; };
  ceph-multi-node = handleTestOn ["x86_64-linux"] ./ceph-multi-node.nix {};
  ceph-single-node = handleTestOn ["x86_64-linux"] ./ceph-single-node.nix {};
  ceph-single-node-bluestore = handleTestOn ["x86_64-linux"] ./ceph-single-node-bluestore.nix {};
+4 −0
Original line number Diff line number Diff line
{
  "version": "4.0.3",
  "sha256": "03gmwmwsldv58shz6sl1l0khxr2kni2ssl9v7k3pb77kpq036qik"
}
+8 −0
Original line number Diff line number Diff line
# GENERATED BY update.sh
{ callPackage, ... } @ args:
callPackage ./generic.nix (
  args
  // builtins.fromJSON (builtins.readFile ./4.json)
  // {
    generation = "4";
  })
+5 −0
Original line number Diff line number Diff line
@@ -23615,6 +23615,11 @@ with pkgs;
  cassandra_3_11 = callPackage ../servers/nosql/cassandra/3.11.nix {
    jre = jre8; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
  };
  cassandra_4 = callPackage ../servers/nosql/cassandra/4.nix {
    # Effective Cassandra 4.0.2 there is full Java 11 support
    #  -- https://cassandra.apache.org/doc/latest/cassandra/new/java11.html
    jre = pkgs.jdk11_headless;
  };
  cassandra = cassandra_3_11;
  cassandra-cpp-driver = callPackage ../development/libraries/cassandra-cpp-driver/default.nix { };