diff options
author | Vika <vika@fireburn.ru> | 2022-05-26 00:19:33 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2022-05-26 00:19:33 +0300 |
commit | 8eedee638a5cc54b03baedea3697280eef719469 (patch) | |
tree | fd516629bfb56fe86dcf321061fa8974de50c9b9 /shell.nix | |
parent | 256ba343a05bc93e576837b75b8739c0fb5ed5cd (diff) | |
download | kittybox-8eedee638a5cc54b03baedea3697280eef719469.tar.zst |
flake.nix: move the devShell into its own file
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..32cff3e --- /dev/null +++ b/shell.nix @@ -0,0 +1,19 @@ +{ mkShell, rustc, cargo, rust-analyzer, clippy +, cargo-watch, cargo-edit, cargo-outdated +, xh, systemfd, tokio-console +, pkg-config, protobuf, openssl, zlib +}: +mkShell { + name = "rust-dev-shell"; + + nativeBuildInputs = [ + rustc cargo rust-analyzer clippy + cargo-watch cargo-edit cargo-outdated + xh systemfd tokio-console + # required for tokio-console's console-subscriber + pkg-config protobuf + # required for httpmock, not actually used in the release + openssl.dev zlib + + ]; +} |