mirror of
https://github.com/cccb/servicepoint.git
synced 2025-01-18 10:00:14 +01:00
17 lines
295 B
Nix
17 lines
295 B
Nix
{pkgs ? import <nixpkgs> {}}:
|
|
pkgs.mkShell {
|
|
nativeBuildInputs = with pkgs.buildPackages; [
|
|
rustc cargo gcc rustfmt clippy
|
|
|
|
pkg-config
|
|
xe
|
|
lzma
|
|
cargo-tarpaulin
|
|
gnumake
|
|
|
|
# dotnet-sdk_8
|
|
];
|
|
|
|
RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}";
|
|
}
|