21f17d69f6
Build-tested on x86_64 Linux & Mac.
36 lines
990 B
Nix
36 lines
990 B
Nix
{ stdenv, fetchurl, jre, unzip }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "weka-${version}";
|
|
version = "3.8.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/weka/${stdenv.lib.replaceChars ["."]["-"] name}.zip";
|
|
sha256 = "2586298688059a025e2810b1ffc73f4fb3cf81ebf2183d8d19b0763d33857f61";
|
|
};
|
|
|
|
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 = stdenv.lib.licenses.gpl2Plus;
|
|
maintainer = [stdenv.lib.maintainers.mimadrid];
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|