From 6df841d06b806ce19cf06b668f202167f39717df Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Thu, 8 Sep 2022 08:45:08 +0200 Subject: cargo-espflash: init at 1.6.0 Signed-off-by: Matthias Beyer --- .../tools/rust/cargo-espflash/default.nix | 30 ++++++++++++++++++++++ pkgs/top-level/all-packages.nix | 2 ++ 2 files changed, 32 insertions(+) create mode 100644 pkgs/development/tools/rust/cargo-espflash/default.nix diff --git a/pkgs/development/tools/rust/cargo-espflash/default.nix b/pkgs/development/tools/rust/cargo-espflash/default.nix new file mode 100644 index 000000000000..cb2a5333e62b --- /dev/null +++ b/pkgs/development/tools/rust/cargo-espflash/default.nix @@ -0,0 +1,30 @@ +{ lib, rustPlatform, fetchFromGitHub, pkg-config, udev, stdenv }: + +rustPlatform.buildRustPackage rec { + pname = "cargo-espflash"; + version = "1.6.0"; + + src = fetchFromGitHub { + owner = "esp-rs"; + repo = "espflash"; + rev = "v${version}"; + sha256 = "sha256-YQ621YbdEy2sS4uEYvgnQU1G9iW5SpWNObPH4BfyeF0="; + }; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + udev + ]; + + cargoSha256 = "sha256-mDSNjeaEtYpEGpiIg2F+e8x/XCssNQxUx+6Cj+8XX5Q="; + + meta = with lib; { + description = "Serial flasher utility for Espressif SoCs and modules based on esptool.py"; + homepage = "https://github.com/esp-rs/cargo-espflash"; + license = licenses.gpl2Only; + maintainers = with maintainers; [ matthiasbeyer ]; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index c6ff2f9b031c..e411cac3e047 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -14418,6 +14418,8 @@ with pkgs; buildRustCrateHelpers = callPackage ../build-support/rust/build-rust-crate/helpers.nix { }; cratesIO = callPackage ../build-support/rust/crates-io.nix { }; + cargo-espflash = callPackage ../development/tools/rust/cargo-espflash { }; + cargo-web = callPackage ../development/tools/rust/cargo-web { inherit (darwin.apple_sdk.frameworks) CoreServices Security; }; -- cgit v1.2.3