diff options
author | Vika <vika@fireburn.ru> | 2023-07-09 22:24:25 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2023-07-17 01:53:42 +0300 |
commit | 0986b7fe1cae81ad9523bddb6ec851380b81e63d (patch) | |
tree | 54475f3affda652fdddff5cbf828605595da07f8 | |
parent | 99ff9cdc6890959cd4d2112c2e37b97ae83cb43c (diff) | |
download | kittybox-0986b7fe1cae81ad9523bddb6ec851380b81e63d.tar.zst |
shell.nix: add openssl
-rw-r--r-- | shell.nix | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/shell.nix b/shell.nix index e22e25f..5438e35 100644 --- a/shell.nix +++ b/shell.nix @@ -2,7 +2,8 @@ , cargo-watch, cargo-edit, cargo-outdated , cargo-crev, cargo-audit , xh, systemfd, tokio-console, sqlx-cli -, pkg-config, protobuf, typescript, typescript-language-server +, pkg-config, protobuf, openssl +, typescript, typescript-language-server }: mkShell { name = "rust-dev-shell"; @@ -12,8 +13,8 @@ mkShell { cargo-watch cargo-edit cargo-outdated cargo-crev cargo-audit sqlx-cli xh systemfd typescript typescript-language-server - #tokio-console - # required for tokio-console's console-subscriber - #pkg-config protobuf + # protobuf is required for tokio-console's console-subscriber + #tokio-console protobuf + pkg-config openssl ]; } |