cargo-embed: init at 0.8.0
This commit is contained in:
parent
61600ea577
commit
ca644f966d
27
pkgs/development/tools/rust/cargo-embed/default.nix
Normal file
27
pkgs/development/tools/rust/cargo-embed/default.nix
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
{ stdenv, lib
|
||||||
|
, rustPlatform, fetchFromGitHub
|
||||||
|
, libusb1, pkg-config, rustfmt }:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "cargo-embed";
|
||||||
|
version = "0.8.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "probe-rs";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0klkgl7c42vhqxj6svw26lcr7rccq89bl17jn3p751x6281zvr35";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "0w21q2fpr077m8jr24ld3qjimwk1m4fy9dh14fq9nv5xd4f5s8n8";
|
||||||
|
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -9525,6 +9525,7 @@ in
|
|||||||
cargo-deny = callPackage ../development/tools/rust/cargo-deny {
|
cargo-deny = callPackage ../development/tools/rust/cargo-deny {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
};
|
};
|
||||||
|
cargo-embed = callPackage ../development/tools/rust/cargo-embed { };
|
||||||
cargo-expand = callPackage ../development/tools/rust/cargo-expand { };
|
cargo-expand = callPackage ../development/tools/rust/cargo-expand { };
|
||||||
cargo-fund = callPackage ../development/tools/rust/cargo-fund {
|
cargo-fund = callPackage ../development/tools/rust/cargo-fund {
|
||||||
inherit (darwin.apple_sdk.frameworks) Security;
|
inherit (darwin.apple_sdk.frameworks) Security;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user