nixpkgs/pkgs/development/tools/rust/ravedude/default.nix
Rafael Varago 2d2c3c0bda 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
2023-04-26 07:58:51 -03:00

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 ];
};
}