this repo has no description
1{ 2 mkShell, 3 callPackage, 4 rustPlatform, 5 6 # repo tooling 7 just, 8 podman, 9 podman-compose, 10 11 # rust tooling 12 clippy, 13 rustfmt, 14 rust-analyzer, 15 16 # frontend tooling 17 deno, 18}: let 19 defaultPackage = callPackage ./default.nix { }; 20in mkShell { 21 inputsFrom = [ defaultPackage ]; 22 23 env = { 24 RUST_SRC_PATH = rustPlatform.rustLibSrc; 25 }; 26 27 packages = [ 28 just 29 podman 30 podman-compose 31 32 clippy 33 rustfmt 34 rust-analyzer 35 36 deno 37 ]; 38}