Files

18 lines
339 B
Nix
Raw Permalink Normal View History

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
(rust-bin.stable.latest.default.override {
extensions = [ "rust-src" "rust-analyzer" "clippy" ];
})
pkg-config
openssl
sqlite
];
RUST_SRC_PATH = "${rust-bin.stable.latest.default}/lib/rustlib/src/rust/library";
RUST_LOG = "info";
}