mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
2d2c3c0bda
This is a tool to make Rust development for AVR microcontrollers smoother by wrapping `avrdude`. https://github.com/Rahix/avr-hal/tree/main/ravedude
31 lines
697 B
Nix
31 lines
697 B
Nix
{ 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 ];
|
|
};
|
|
}
|