nixos-config/devcontainers/rust-backend.nix

8 lines
215 B
Nix
Raw Normal View History

{ dockerTools, foodogsquaredLib, rustc, cargo, rust-bindgen, rust-analyzer
, nodejs }:
2024-10-26 10:35:21 +00:00
foodogsquaredLib.buildDockerImage {
name = "rust-backend";
contents = [ cargo rust-bindgen rust-analyzer rustc nodejs ];
2024-10-26 10:35:21 +00:00
}