cargo-pio: init at 0.25.6 (#296660)

This commit is contained in:
Sandro 2024-10-28 13:05:10 +01:00 committed by GitHub
commit 703fc88d84
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,27 @@
{ 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";
};
}