blahrs/shell.nix

7 lines
187 B
Nix

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