mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 17:53:14 +00:00
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:
parent
87439d8cbc
commit
2d2c3c0bda
30
pkgs/development/tools/rust/ravedude/default.nix
Normal file
30
pkgs/development/tools/rust/ravedude/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user