cargo-flash: init at 0.8.0

This commit is contained in:
Dustin Frisch 2020-08-24 13:07:33 +02:00
parent ca644f966d
commit 61c25dfb1b
No known key found for this signature in database
GPG Key ID: B4C3BF012D9B26BE
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ stdenv, lib
, rustPlatform, fetchFromGitHub
, libusb1, pkg-config, rustfmt }:
rustPlatform.buildRustPackage rec {
pname = "cargo-flash";
version = "0.8.0";
src = fetchFromGitHub {
owner = "probe-rs";
repo = pname;
rev = "v${version}";
sha256 = "1bcpv1r4pdpp22w7za7kdy7jl487x3nlwxiz6sqq3iq6wq3j9zj0";
};
cargoSha256 = "1pf117fgw9x9diksqv58cw7i0kzmp25yj73y5ll69sk46b6z4j90";
nativeBuildInputs = [ pkg-config rustfmt ];
buildInputs = [ libusb1 ];
meta = with lib; {
description = "A cargo extension for working with microcontrollers.";
homepage = "http://probe.rs/";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ fooker ];
};
}

View File

@ -9527,6 +9527,7 @@ in
};
cargo-embed = callPackage ../development/tools/rust/cargo-embed { };
cargo-expand = callPackage ../development/tools/rust/cargo-expand { };
cargo-flash = callPackage ../development/tools/rust/cargo-flash { };
cargo-fund = callPackage ../development/tools/rust/cargo-fund {
inherit (darwin.apple_sdk.frameworks) Security;
};