mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-01 00:31:09 +00:00
7 lines
187 B
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";
|
|
}
|