servicepoint/shell.nix

17 lines
295 B
Nix
Raw Normal View History

2024-05-26 11:40:52 +02:00
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
rustc cargo gcc rustfmt clippy
2024-05-26 11:40:52 +02:00
pkg-config
xe
lzma
cargo-tarpaulin
gnumake
# dotnet-sdk_8
2024-05-26 11:40:52 +02:00
];
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
2024-05-17 21:02:50 +02:00
}