2015-12-26 17:29:08 +00:00
|
|
|
{ stdenv, fetchzip, makeWrapper, jre, pythonPackages
|
2014-12-04 16:27:01 +00:00
|
|
|
, mesosSupport ? true, mesos
|
|
|
|
}:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2014-02-20 11:54:04 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "spark-${version}";
|
2016-02-10 20:39:44 +00:00
|
|
|
version = "1.6.0";
|
2014-02-20 11:54:04 +00:00
|
|
|
|
2015-12-26 17:29:08 +00:00
|
|
|
src = fetchzip {
|
2015-07-09 23:36:47 +00:00
|
|
|
url = "mirror://apache/spark/${name}/${name}-bin-cdh4.tgz";
|
2016-03-07 22:16:26 +00:00
|
|
|
sha256 = "19ycx1r8g82vkvzmn9wxkssmv2damrg72yfmrgzpc6xyh071g91c";
|
2014-02-20 11:54:04 +00:00
|
|
|
};
|
|
|
|
|
2014-12-04 16:27:01 +00:00
|
|
|
buildInputs = [ makeWrapper jre pythonPackages.python pythonPackages.numpy ]
|
|
|
|
++ optional mesosSupport [ mesos ];
|
2014-02-20 11:54:04 +00:00
|
|
|
|
2014-04-29 15:34:28 +00:00
|
|
|
untarDir = "${name}-bin-cdh4";
|
2014-02-20 11:54:04 +00:00
|
|
|
installPhase = ''
|
2015-12-26 17:30:28 +00:00
|
|
|
mkdir -p $out/{lib/${untarDir}/conf,bin,/share/java}
|
2014-12-04 16:27:01 +00:00
|
|
|
mv * $out/lib/${untarDir}
|
|
|
|
|
2015-12-26 17:29:49 +00:00
|
|
|
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"
|
|
|
|
${optionalString mesosSupport
|
|
|
|
''export MESOS_NATIVE_LIBRARY="$MESOS_NATIVE_LIBRARY"''}
|
2014-02-20 11:54:04 +00:00
|
|
|
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)"
|
2014-02-20 11:54:04 +00:00
|
|
|
done
|
2015-12-26 17:30:28 +00:00
|
|
|
ln -s $out/lib/${untarDir}/lib/spark-assembly-*.jar $out/share/java
|
2014-02-20 11:54:04 +00:00
|
|
|
'';
|
|
|
|
|
2014-03-02 11:51:22 +00:00
|
|
|
meta = {
|
2014-04-29 15:34:28 +00:00
|
|
|
description = "Lightning-fast cluster computing";
|
|
|
|
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 ];
|
2014-04-29 15:34:28 +00:00
|
|
|
repositories.git = git://git.apache.org/spark.git;
|
2014-02-20 11:54:04 +00:00
|
|
|
};
|
|
|
|
}
|