Add more build tools to shell.nix

Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
This commit is contained in:
Daniel D’Aquino
2024-08-23 14:30:27 -07:00
parent 34cdb6d180
commit 2d87c3bcd0

View File

@ -1,5 +1,10 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [ pkgs.websocat ];
buildInputs = [
pkgs.cargo
pkgs.openssl
pkgs.pkg-config
pkgs.websocat
];
}