Merge pull request #191487 from xanderio/add-cargo-espmonitor
cargo-espmonitor: init at 0.10.0
This commit is contained in:
commit
17ff1e6ca1
3 changed files with 34 additions and 0 deletions
|
@ -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";
|
||||
|
|
27
pkgs/development/tools/rust/cargo-espmonitor/default.nix
Normal file
27
pkgs/development/tools/rust/cargo-espmonitor/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue