nixpkgs/pkgs/applications/networking/cluster/flink/default.nix

55 lines
1.3 KiB
Nix
Raw Normal View History

2017-11-29 02:21:45 +00:00
{ stdenv, fetchurl, makeWrapper, jre
2018-09-14 16:35:06 +00:00
, version ? "1.6" }:
2017-11-25 19:25:06 +00:00
let
versionMap = {
2018-07-11 18:37:06 +00:00
"1.5" = {
2018-11-18 14:29:21 +00:00
flinkVersion = "1.5.5";
sha256 = "18wqcqi3gyqd40nspih99gq7ylfs20b35f4dcrspffagwkfp2l4z";
2018-07-11 18:37:06 +00:00
};
2018-09-14 16:35:06 +00:00
"1.6" = {
flinkVersion = "1.11.1";
sha256 = "0338bg2sb427c1rrf2cmsz63sz0yk6gclpli2lskq0mpx72wxpl0";
2018-09-14 16:35:06 +00:00
};
2017-11-25 19:25:06 +00:00
};
in
with versionMap.${version};
stdenv.mkDerivation rec {
name = "flink-${flinkVersion}";
2017-11-29 02:21:45 +00:00
src = fetchurl {
url = "mirror://apache/flink/${name}/${name}-bin-scala_2.11.tgz";
2017-11-25 19:25:06 +00:00
inherit sha256;
};
2017-11-29 02:21:45 +00:00
nativeBuildInputs = [ makeWrapper ];
2017-11-25 19:25:06 +00:00
buildInputs = [ jre ];
installPhase = ''
rm bin/*.bat || true
2017-11-29 02:21:45 +00:00
mkdir -p $out/bin $out/opt/flink
mv * $out/opt/flink/
makeWrapper $out/opt/flink/bin/flink $out/bin/flink \
--prefix PATH : ${jre}/bin
2017-11-25 19:25:06 +00:00
2017-11-29 02:21:45 +00:00
cat <<EOF >> $out/opt/flink/conf/flink-conf.yaml
2017-11-25 19:25:06 +00:00
env.java.home: ${jre}"
env.log.dir: /tmp/flink-logs
EOF
'';
meta = with stdenv.lib; {
2017-11-29 02:21:45 +00:00
description = "A distributed stream processing framework";
homepage = "https://flink.apache.org";
downloadPage = "https://flink.apache.org/downloads.html";
2017-11-29 02:21:45 +00:00
license = licenses.asl20;
platforms = platforms.all;
maintainers = with maintainers; [ mbode ];
repositories.git = "git://git.apache.org/flink.git";
2017-11-25 19:25:06 +00:00
};
}