summaryrefslogtreecommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix8
1 files changed, 5 insertions, 3 deletions
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
- ];
+ ];
}