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";
}