init
This commit is contained in:
commit
28a9a97bf5
6 changed files with 69 additions and 0 deletions
15
package.nix
Normal file
15
package.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue