api requests made, repl form
This commit is contained in:
parent
28a9a97bf5
commit
fd07ea0b2d
8 changed files with 2301 additions and 14 deletions
23
package.nix
23
package.nix
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue