ravedude: init at 0.1.5

This is a tool to make Rust development for AVR microcontrollers
smoother by wrapping `avrdude`.

https://github.com/Rahix/avr-hal/tree/main/ravedude
This commit is contained in:
Rafael Varago 2023-04-21 23:25:08 +02:00 committed by Anderson Torres
parent 87439d8cbc
commit 2d2c3c0bda
2 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,30 @@
{ lib
, rustPlatform
, fetchCrate
, pkg-config
, udev
}:
rustPlatform.buildRustPackage rec {
pname = "ravedude";
version = "0.1.5";
src = fetchCrate {
inherit pname version;
hash = "sha256-wcY9fvfIn1pWMAh5FI/QFl18CV2xjmRGSwwoRfGvujo=";
};
cargoHash = "sha256-AOIrB0FRagbA2+JEURF41d+th0AbR++U5WKCcZmh4Os=";
nativeBuildInputs = [ pkg-config ];
buildInputs = [ udev ];
meta = with lib; {
description = "Tool to easily flash code onto an AVR microcontroller with avrdude";
homepage = "https://crates.io/crates/ravedude";
license = with licenses; [ mit /* or */ asl20 ];
platforms = platforms.linux;
maintainers = with maintainers; [ rvarago ];
};
}

View file

@ -16276,6 +16276,7 @@ with pkgs;
ograc = callPackage ../development/tools/rust/ograc { };
ravedude = callPackage ../development/tools/rust/ravedude { };
rhack = callPackage ../development/tools/rust/rhack { };
roogle = callPackage ../development/tools/rust/roogle { };
rustfmt = rustPackages.rustfmt;