mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-05 13:23:17 +00:00
32 lines
731 B
Nix
32 lines
731 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchCrate
|
|
, pkg-config
|
|
, libusb1
|
|
, stdenv
|
|
, AppKit
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-hf2";
|
|
version = "0.3.3";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
sha256 = "sha256-0o3j7YfgNNnfbrv9Gppo24DqYlDCxhtsJHIhAV214DU=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-zBxvpQfB9xw8+Rc1H1EaK/gQZtQ+uSs4YJwhm2o0vhI=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libusb1 ] ++ lib.optionals stdenv.isDarwin [ AppKit ];
|
|
|
|
meta = with lib; {
|
|
description = "Cargo Subcommand for Microsoft HID Flashing Library for UF2 Bootloaders ";
|
|
homepage = "https://lib.rs/crates/cargo-hf2";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ astrobeastie ];
|
|
};
|
|
}
|