Installation
System wide:
{
environment.systemPackages = with nix-casks.packages.${system}; [
weka # Weka
];
} Home Manager:
{
home.packages = with nix-casks.packages.${system}; [
weka # Weka
];
} Package Definition
{
"pname": "weka",
"version": "3.8.7",
"src": {
"url": "https://downloads.sourceforge.net/weka/weka-3-8-7-bellsoft-arm-osx.dmg",
"sha256": "d1d77d42d3eeb8828bdff128857b5ad6c91447b9587397463d4ca58f6d7472bd"
},
"installPhase": [
"mkdir -p \"$out/Applications/weka-3.8.7.app\" && cp -r \"weka-3.8.7.app\" \"$out/Applications\""
],
"meta": {
"description": "Collection of machine learning algorithms for data mining tasks",
"homepage": "https://ml.cms.waikato.ac.nz/weka"
}
}