supmcu-rs 0.5.0

Library for easily interfacing with Pumpkin SupMCU Modules over I2C
Documentation
{
  description = "Nix flake for supmcu-rs";

  inputs = {
    nixpkgs.url      = "github:NixOS/nixpkgs/nixos-unstable";
    rust-overlay.url = "github:oxalica/rust-overlay";
    flake-utils.url  = "github:numtide/flake-utils";
  };

  outputs = { nixpkgs, rust-overlay, flake-utils, ... }:
    flake-utils.lib.eachDefaultSystem (system:
      let
        overlays = [ (import rust-overlay) ];
        pkgs = import nixpkgs {
          inherit system overlays;
        };
      in
      with pkgs;
      {
        devShells.default = mkShell {
          buildInputs = [
            openssl
            pkg-config
            rust-bin.beta.latest.default
            cargo
            rust-analyzer
          ];

          shellHook = ''
          '';
        };
      }
    );
}