nixos-config/devcontainers/rust-backend.nix

9 lines
233 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 rec {
name = "rust-backend";
tag = name;
contents = [ cargo rust-bindgen rust-analyzer rustc nodejs ];
2024-10-26 10:35:21 +00:00
}