Merge pull request #191487 from xanderio/add-cargo-espmonitor

cargo-espmonitor: init at 0.10.0
This commit is contained in:
Pascal Bach 2022-09-24 21:07:58 +02:00 committed by GitHub
commit 17ff1e6ca1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 34 additions and 0 deletions

View file

@ -14476,6 +14476,12 @@
github = "x3rAx";
githubId = 2268851;
};
xanderio = {
name = "Alexander Sieg";
email = "alex@xanderio.de";
github = "xanderio";
githubId = 6298052;
};
xaverdh = {
email = "hoe.dom@gmx.de";
github = "xaverdh";

View file

@ -0,0 +1,27 @@
{ lib
, fetchFromGitHub
, rustPlatform
, pkg-config
, systemd
,
}:
rustPlatform.buildRustPackage rec {
pname = "espmonitor";
version = "0.10.0";
src = fetchFromGitHub {
owner = "esp-rs";
repo = pname;
rev = "v${version}";
sha256 = "hWFdim84L2FfG6p9sEf+G5Uq4yhp5kv1ZMdk4sMHa+4=";
};
cargoSha256 = "d0tN6NZiAd+RkRy941fIaVEw/moz6tkpL0rN8TZew3g=";
meta = with lib; {
description = "Cargo tool for monitoring ESP32/ESP8266 execution";
homepage = "https://github.com/esp-rs/espmonitor";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ xanderio ];
};
}

View file

@ -14696,6 +14696,7 @@ with pkgs;
cargo-embed = callPackage ../development/tools/rust/cargo-embed {
inherit (darwin.apple_sdk.frameworks) AppKit;
};
cargo-espmonitor = callPackage ../development/tools/rust/cargo-espmonitor { };
cargo-expand = callPackage ../development/tools/rust/cargo-expand { };
cargo-hakari = callPackage ../development/tools/rust/cargo-hakari { };
cargo-feature = callPackage ../development/tools/rust/cargo-feature { };