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

69 lines
2 KiB
Nix
Raw Normal View History

2015-12-26 17:29:08 +00:00
{ stdenv, fetchzip, makeWrapper, jre, pythonPackages
2017-03-26 16:17:17 +00:00
, RSupport? true, R
2014-12-04 16:27:01 +00:00
, mesosSupport ? true, mesos
, version
2014-12-04 16:27:01 +00:00
}:
let
versionMap = {
2018-01-11 11:52:32 +00:00
"2.2.1" = {
2017-10-18 11:13:18 +00:00
hadoopVersion = "hadoop2.7";
2018-01-11 11:52:32 +00:00
sparkSha256 = "10nxsf9a6hj1263sxv0cbdqxdb8mb4cl6iqq32ljq9ydvk32s99c";
};
};
in
with versionMap.${version};
2014-12-04 16:27:01 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "spark-${version}";
2015-12-26 17:29:08 +00:00
src = fetchzip {
url = "mirror://apache/spark/${name}/${name}-bin-${hadoopVersion}.tgz";
sha256 = sparkSha256;
};
2014-12-04 16:27:01 +00:00
buildInputs = [ makeWrapper jre pythonPackages.python pythonPackages.numpy ]
2017-03-26 16:17:17 +00:00
++ optional RSupport R
++ optional mesosSupport mesos;
untarDir = "${name}-bin-${hadoopVersion}";
installPhase = ''
mkdir -p $out/{lib/${untarDir}/conf,bin,/share/java}
2014-12-04 16:27:01 +00:00
mv * $out/lib/${untarDir}
sed -e 's/INFO, console/WARN, console/' < \
$out/lib/${untarDir}/conf/log4j.properties.template > \
$out/lib/${untarDir}/conf/log4j.properties
2014-12-04 16:27:01 +00:00
cat > $out/lib/${untarDir}/conf/spark-env.sh <<- EOF
export JAVA_HOME="${jre}"
export SPARK_HOME="$out/lib/${untarDir}"
export PYSPARK_PYTHON="${pythonPackages.python}/bin/${pythonPackages.python.executable}"
export PYTHONPATH="\$PYTHONPATH:$PYTHONPATH"
2017-03-26 16:17:17 +00:00
${optionalString RSupport
''export SPARKR_R_SHELL="${R}/bin/R"
export PATH=$PATH:"${R}/bin/R"''}
2014-12-04 16:27:01 +00:00
${optionalString mesosSupport
''export MESOS_NATIVE_LIBRARY="$MESOS_NATIVE_LIBRARY"''}
EOF
2014-12-04 16:27:01 +00:00
for n in $(find $out/lib/${untarDir}/bin -type f ! -name "*.*"); do
makeWrapper "$n" "$out/bin/$(basename $n)"
done
ln -s $out/lib/${untarDir}/lib/spark-assembly-*.jar $out/share/java
'';
meta = {
2017-03-26 16:17:17 +00:00
description = "Apache Spark is a fast and general engine for large-scale data processing";
homepage = "http://spark.apache.org";
license = stdenv.lib.licenses.asl20;
platforms = stdenv.lib.platforms.all;
2014-12-04 16:27:01 +00:00
maintainers = with maintainers; [ thoughtpolice offline ];
repositories.git = git://git.apache.org/spark.git;
};
}