8a1f77fe2d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libsvm/versions.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libsvm-${version}";
|
|
version = "3.23";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.csie.ntu.edu.tw/~cjlin/libsvm/libsvm-${version}.tar.gz";
|
|
sha256 = "0jpaq0rr92x38p4nk3gjan79ip67m6p80anb28z1d8601miysyi5";
|
|
};
|
|
|
|
buildPhase = ''
|
|
make
|
|
make lib
|
|
'';
|
|
|
|
installPhase = let
|
|
libSuff = stdenv.hostPlatform.extensions.sharedLibrary;
|
|
in ''
|
|
mkdir -p $out/lib $out/bin $out/include;
|
|
cp libsvm.so.2 $out/lib/libsvm.2${libSuff};
|
|
ln -s $out/lib/libsvm.2${libSuff} $out/lib/libsvm${libSuff};
|
|
cp svm-scale svm-train svm-predict $out/bin;
|
|
cp svm.h $out/include;
|
|
'';
|
|
|
|
postFixup = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
install_name_tool -id libsvm.2.dylib $out/lib/libsvm.2.dylib;
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A library for support vector machines";
|
|
homepage = https://www.csie.ntu.edu.tw/~cjlin/libsvm/;
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.spwhitt ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|