571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, libusb1 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dfu-util";
|
|
version = "0.11";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libusb1 ];
|
|
|
|
src = fetchurl {
|
|
url = "https://dfu-util.sourceforge.net/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "sha256-tLU7ohqC7349TEffKVKt9fpJT0mbawtXxYxdBK6P8Z4=";
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Device firmware update (DFU) USB programmer";
|
|
longDescription = ''
|
|
dfu-util is a program that implements the host (PC) side of the USB
|
|
DFU 1.0 and 1.1 (Universal Serial Bus Device Firmware Upgrade) protocol.
|
|
|
|
DFU is intended to download and upload firmware to devices connected over
|
|
USB. It ranges from small devices like micro-controller boards up to mobile
|
|
phones. With dfu-util you are able to download firmware to your device or
|
|
upload firmware from it.
|
|
'';
|
|
homepage = "https://dfu-util.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ maintainers.fpletz ];
|
|
};
|
|
}
|