4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
32 lines
1.0 KiB
Nix
32 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig, libusb1-axoloti }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "dfu-util";
|
|
version = "0.8";
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ libusb1-axoloti ];
|
|
|
|
src = fetchurl {
|
|
url = "http://dfu-util.sourceforge.net/releases/${pname}-${version}.tar.gz";
|
|
sha256 = "0n7h08avlzin04j93m6hkq9id6hxjiiix7ff9gc2n89aw6dxxjsm";
|
|
};
|
|
|
|
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 = "http://dfu-util.sourceforge.net";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = [ ];
|
|
};
|
|
}
|