vodca 0.1.8

Reduce boilerplate when writing DDD codes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  description = "A basic flake with a shell";
  inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
  inputs.flake-utils.url = "github:numtide/flake-utils";

  outputs = { nixpkgs, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        pkgs = nixpkgs.legacyPackages.${system};
      in
      {
        devShells.default = with pkgs; mkShell {
          packages = [ bashInteractive rustup cargo-deny ];
        };
      });
}