mirror of
https://github.com/RoboSats/taptrade-core.git
synced 2025-07-21 10:13:23 +00:00
15 lines
373 B
Nix
15 lines
373 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
pkg-config
|
|
zlib
|
|
openssl
|
|
cargo
|
|
rustc
|
|
rustfmt
|
|
gcc
|
|
];
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
}
|
|
|
|
# For VSCode and Rust Analyzer use the Extension "Nix Environment Selector" |