Adding 'weka'.

This commit is contained in:
Lluís Batlle i Rossell 2013-06-19 16:12:55 +02:00
parent 962e2aede8
commit 4c6a981070
2 changed files with 34 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{ stdenv, fetchurl, jre, unzip }:
stdenv.mkDerivation {
name = "weka-3.6.9";
src = fetchurl {
url = "mirror://sourceforge/weka/weka-3-6-9.zip";
sha256 = "0rnis4vvihhdcdvpp79hkmklcnn897paa0qrs95cbjnpgvxzbczs";
};
buildInputs = [ unzip ];
# The -Xmx1000M comes suggested from their download page:
# http://www.cs.waikato.ac.nz/ml/weka/downloading.html
installPhase = ''
mkdir -pv $out/share/weka $out/bin
cp -Rv * $out/share/weka
cat > $out/bin/weka << EOF
#!${stdenv.shell}
${jre}/bin/java -Xmx1000M -jar $out/share/weka/weka.jar
EOF
chmod +x $out/bin/weka
'';
meta = {
homepage = "http://www.cs.waikato.ac.nz/ml/weka/";
description = "Collection of machine learning algorithms for data mining tasks";
license = "GPLv2+";
};
}

View File

@ -9255,6 +9255,8 @@ let
msieve = callPackage ../applications/science/math/msieve { };
weka = callPackage ../applications/science/math/weka { };
yacas = callPackage ../applications/science/math/yacas { };