diff options
| -rw-r--r-- | .vscode/launch.json | 58 | ||||
| -rw-r--r-- | shell.nix | 8 |
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 @@ -1,10 +1,12 @@ -{ pkgs ? import <nixpkgs> {} }: +{ + pkgs ? import <nixpkgs> { }, +}: pkgs.mkShell { buildInputs = with pkgs; [ - rustup + rustup pkg-config rust-analyzer gcc - ]; + ]; } |
