Preliminary state

This commit is contained in:
Anton Pogrebnjak
2026-05-26 10:24:33 +02:00
commit 0ab11cfc5e
950 changed files with 6428 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
pkgs,
}:
pkgs.rustPlatform.buildRustPackage (finalAttrs: {
pname = "fvnn-minijax";
version = "0.0.1";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
meta = {
description = "Simple implementation of neural networks and verifiers";
homepage = "https://github.com/Pantonius/fvnn-minijax";
license = pkgs.lib.licenses.unlicense;
maintainers = [ ];
};
})