1
0
Fork 0
mirror of https://github.com/Blah-IM/blahrs.git synced 2025-05-19 00:31:09 +00:00
blahrs/shell.nix
2024-08-27 01:29:48 -04:00

7 lines
167 B
Nix

with import <nixpkgs> { };
mkShell {
nativeBuildInputs = [ pkg-config sqlite-interactive ];
buildInputs = [ openssl.dev sqlite.dev ];
env.RUST_LOG = "debug";
}