codemine 0.1.0

Another software development harness
1
2
3
4
5
6
7
8
{ pkgs ? import ./nix/nixpkgs.nix }:

with pkgs;

mkShell {
  nativeBuildInputs = [ cargo rustc rust-analyzer rustfmt clippy ];
  buildInputs = import ./nix/runtime.nix { inherit pkgs; };
}