cassandra: 3.0.9 -> 3.11.1 release

We still keep the 3.0.9 attribute to have a stable 3.x release.
This commit is contained in:
Antoine Eiche 2017-12-15 09:20:29 +01:00
parent 2e93f93b2a
commit df40f4371d
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,6 @@
{ callPackage, ... } @ args:
callPackage ./generic.nix (args // {
version = "3.11.1";
sha256 = "1vgh4ysnl4xg8g5v6zm78h3sq308r7s17ppbw0ck4bwyfnbddvkg";
})

View File

@ -11549,7 +11549,8 @@ with pkgs;
cassandra_2_1 = callPackage ../servers/nosql/cassandra/2.1.nix { };
cassandra_2_2 = callPackage ../servers/nosql/cassandra/2.2.nix { };
cassandra_3_0 = callPackage ../servers/nosql/cassandra/3.0.nix { };
cassandra = cassandra_3_0;
cassandra_3_11 = callPackage ../servers/nosql/cassandra/3.11.nix { };
cassandra = cassandra_3_11;
apache-jena = callPackage ../servers/nosql/apache-jena/binary.nix {
java = jdk;