api requests made, repl form

This commit is contained in:
mtgmonkey 2025-06-21 06:04:44 -04:00
parent 28a9a97bf5
commit fd07ea0b2d
8 changed files with 2301 additions and 14 deletions

View file

@ -1,13 +1,20 @@
{rustPlatform, ...}:
rustPlatform.buildRustPackage {
{
openssl,
pkg-config,
stdenv,
naersk,
...
}:
naersk.buildPackage {
name = "rust_elaborator";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
nativeBuildInputs = [];
buildInputs = [];
configurePhase = '''';
buildPhase = '''';
installPhase = '''';
buildInputs = [openssl];
nativeBuildInputs = [pkg-config];
# configurePhase = '''';
# buildPhase = '''';
# installPhase = ''
# install -Dm775 ./target/release/rust_elaborator $out/bin/rust_elaborator
# '';
meta = {
mainProgram = "rust_elaborator";
homepage = "https://mtgmonkey.net";