summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.vscode/launch.json58
-rw-r--r--shell.nix8
2 files changed, 5 insertions, 61 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
deleted file mode 100644
index 2519d97..0000000
--- a/.vscode/launch.json
+++ /dev/null
@@ -1,58 +0,0 @@
-{
- // Use IntelliSense to learn about possible attributes.
- // Hover to view descriptions of existing attributes.
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Debug executable 'init'",
- "type": "lldb",
- "request": "launch",
- "cargo": {
- "args": [
- "run",
- "--bin=init",
- "--package=init"
- ]
- },
- "args": []
- },
- {
- "name": "Debug unit tests in executable 'init'",
- "type": "lldb",
- "request": "launch",
- "cargo": {
- "args": [
- "test",
- "--bin=init",
- "--package=init"
- ]
- }
- },
- {
- "name": "Debug executable 'vegilctl'",
- "type": "lldb",
- "request": "launch",
- "cargo": {
- "args": [
- "run",
- "--bin=vegilctl",
- "--package=vegilctl"
- ]
- },
- "args": []
- },
- {
- "name": "Debug unit tests in executable 'vegilctl'",
- "type": "lldb",
- "request": "launch",
- "cargo": {
- "args": [
- "test",
- "--bin=vegilctl",
- "--package=vegilctl"
- ]
- }
- }
- ]
-} \ No newline at end of file
diff --git a/shell.nix b/shell.nix
index 4d96b49..d484ed5 100644
--- a/shell.nix
+++ b/shell.nix
@@ -1,10 +1,12 @@
-{ pkgs ? import <nixpkgs> {} }:
+{
+ pkgs ? import <nixpkgs> { },
+}:
pkgs.mkShell {
buildInputs = with pkgs; [
- rustup
+ rustup
pkg-config
rust-analyzer
gcc
- ];
+ ];
}