mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 19:51:17 +00:00
cargo-espmonitor: init at 0.10.0
This commit is contained in:
parent
58770a334d
commit
856086a6c4
|
@ -14442,6 +14442,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.gpl3;
|
||||
maintainers = with maintainers; [ xanderio ];
|
||||
};
|
||||
}
|
|
@ -14623,6 +14623,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