rust-elaborator/package.nix
mtgmonkey 28a9a97bf5 init
2025-06-20 09:47:35 -04:00

15 lines
341 B
Nix

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