about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVika <vika@fireburn.ru>2023-07-09 22:24:25 +0300
committerVika <vika@fireburn.ru>2023-07-17 01:53:42 +0300
commit0986b7fe1cae81ad9523bddb6ec851380b81e63d (patch)
tree54475f3affda652fdddff5cbf828605595da07f8
parent99ff9cdc6890959cd4d2112c2e37b97ae83cb43c (diff)
shell.nix: add openssl
-rw-r--r--shell.nix9
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
   ];
 }