mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
25 lines
359 B
Nix
25 lines
359 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
|
|
pkgs.mkShell rec {
|
|
buildInputs = [
|
|
# Tools
|
|
pkgs.git
|
|
|
|
# Cargo
|
|
pkgs.cargo
|
|
pkgs.cargo-nextest
|
|
|
|
# Rust
|
|
pkgs.rustc
|
|
pkgs.clippy
|
|
pkgs.rustfmt
|
|
pkgs.pkg-config
|
|
pkgs.openssl.dev
|
|
|
|
# mdbook
|
|
pkgs.mdbook
|
|
];
|
|
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
}
|