mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 21:33:07 +00:00
43 lines
937 B
Nix
43 lines
937 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
, pkg-config
|
|
, udev
|
|
, nix-update-script
|
|
, testers
|
|
, ravedude
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ravedude";
|
|
version = "0.1.6";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-LhPRz3DUMDoe50Hq3yO+2BHpyh5fQ4sMNGLttjkdSZw=";
|
|
};
|
|
|
|
cargoHash = "sha256-Uo8wlTAHBkn/WeGPhPP+BU80wjSyNHsWQj8QvA7mHrk=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ udev ];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
tests.version = testers.testVersion {
|
|
package = ravedude;
|
|
version = "v${version}";
|
|
};
|
|
};
|
|
|
|
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 ];
|
|
mainProgram = "ravedude";
|
|
};
|
|
}
|