mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
apache-kafka: Update apache kafka to version 0.8.2.1
Also use scala version recommended in Kafka docs (2.10).
This commit is contained in:
parent
626c7d8812
commit
3dd03330d1
1 changed files with 3 additions and 3 deletions
|
@ -1,8 +1,8 @@
|
|||
{ stdenv, fetchurl, jre, makeWrapper, bash }:
|
||||
|
||||
let
|
||||
kafkaVersion = "0.8.1.1";
|
||||
scalaVersion = "2.8.0";
|
||||
kafkaVersion = "0.8.2.1";
|
||||
scalaVersion = "2.10";
|
||||
|
||||
in
|
||||
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
src = fetchurl {
|
||||
url = "mirror://apache/kafka/${kafkaVersion}/kafka_${version}.tgz";
|
||||
sha256 = "1bya4qs0ccrqibmdivgdxcsyiay4c3vywddrkci1dz9v3ymrqby9";
|
||||
sha256 = "1klri23fjxbzv7rmi05vcqqfpy7dzi1spn2084y1dxsi1ypfkvc9";
|
||||
};
|
||||
|
||||
buildInputs = [ jre makeWrapper bash ];
|
||||
|
|
Loading…
Reference in a new issue