Commit c81b9995 authored by Dan Nixon's avatar Dan Nixon
Browse files

cargo-pio: init at 0.25.6

parent 190224fa
Loading
Loading
Loading
Loading
+27 −0
Original line number Diff line number Diff line
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
  pname = "cargo-pio";
  version = "0.25.6";

  src = fetchFromGitHub {
    owner = "esp-rs";
    repo = "embuild";
    rev = "cargo-pio-v${version}";
    hash = "sha256-YH2CPb3uBlPncd+KkP25xhCVvDB7HDxJuSqWOJ1LT3k=";
  };

  cargoHash = "sha256-41ZDe7yP4C9JcX5trcDxcqdgZ+SnhDIIq51hM0Viv9w=";

  buildAndTestSubdir = "cargo-pio";

  meta = with lib; {
    description = "Build Rust embedded projects with PlatformIO";
    homepage = "https://github.com/esp-rs/embuild/tree/master/cargo-pio";
    license = with lib.licenses; [ asl20 mit ];
    maintainers = with maintainers; [ dannixon ];
    mainProgram = "cargo-pio";
  };
}