full upload so not to lose anything important

This commit is contained in:
Jan Kowalczyk
2025-03-14 18:02:23 +01:00
parent 35fcfb7d5a
commit b824ff7482
33 changed files with 3539 additions and 353 deletions

View File

@@ -0,0 +1,35 @@
{ pkgs
, fetchFromGitHub
, cmake
, gcc12Stdenv ? pkgs.gcc12Stdenv
, cudaPackages ? pkgs.cudaPackages
}:
gcc12Stdenv.mkDerivation rec {
pname = "thundersvm";
version = "git";
src = fetchFromGitHub {
owner = "Xtra-Computing";
repo = "thundersvm";
rev = "5c6a056ac7f474b085d5415c81c5d48a1419642a";
sha256 = "sha256-58YtOC8FK1d3ATETmwrEBc+/SQx0Pzlx5L1MgxXPQDE=";
};
nativeBuildInputs = [
cmake
];
buildInputs = [
cudaPackages.cudatoolkit
];
meta = with pkgs.lib; {
description = "ThunderSVM CLI and library (compiled with CUDA)";
homepage = "https://github.com/Xtra-Computing/thundersvm";
license = licenses.asl20;
maintainers = [];
platforms = platforms.linux;
};
}