This commit is contained in:
mtgmonkey 2025-06-20 09:47:35 -04:00
commit 28a9a97bf5
6 changed files with 69 additions and 0 deletions

15
package.nix Normal file
View file

@ -0,0 +1,15 @@
{rustPlatform, ...}:
rustPlatform.buildRustPackage {
name = "rust_elaborator";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [];
buildInputs = [];
configurePhase = '''';
buildPhase = '''';
installPhase = '''';
meta = {
mainProgram = "rust_elaborator";
homepage = "https://mtgmonkey.net";
};
}