mirror of
https://github.com/Blah-IM/blahrs.git
synced 2025-05-01 08:41:09 +00:00
7 lines
167 B
Nix
7 lines
167 B
Nix
with import <nixpkgs> { };
|
|
mkShell {
|
|
nativeBuildInputs = [ pkg-config sqlite-interactive ];
|
|
buildInputs = [ openssl.dev sqlite.dev ];
|
|
|
|
env.RUST_LOG = "debug";
|
|
}
|