elf2uf2-rs 1.3.8 -> 2.0.0 https://repology.org/project/elf2uf2-rs/versions attrpath: elf2uf2-rs Checking auto update branch... No auto update branch exists Old version 1.3.8" not present in master derivation file with contents: { lib, stdenv, rustPlatform, fetchCrate, pkg-config, udev, CoreFoundation, DiskArbitration, Foundation }: rustPlatform.buildRustPackage rec { pname = "elf2uf2-rs"; version = "2.0.0"; src = fetchCrate { inherit pname version; sha256 = "sha256-cmiCOykORue0Cg2uUUWa/nXviX1ddbGNC5gRKe+1kYs="; }; nativeBuildInputs = [ pkg-config ]; buildInputs = lib.optional stdenv.isLinux udev ++ lib.optionals stdenv.isDarwin [ CoreFoundation DiskArbitration Foundation ]; cargoHash = "sha256-TBH3pLB6vQVGnfShLtFPNKjciuUIuTkvp3Gayzo+X9E="; meta = with lib; { description = "Convert ELF files to UF2 for USB Flashing Bootloaders"; homepage = "https://github.com/JoNil/elf2uf2-rs"; license = with licenses; [ bsd0 ]; platforms = platforms.linux ++ platforms.darwin; maintainers = with maintainers; [ polygon moni ]; }; }