lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dfu-util: init at 0.8

Since the website and Sourceforge are currently down, the source tarball
is fetched from Debian mirrors.

+33
+31
pkgs/development/tools/misc/dfu-util/default.nix
··· 1 + { stdenv, fetchurl, pkgconfig, libusb1 }: 2 + 3 + stdenv.mkDerivation rec { 4 + name="dfu-util-${version}"; 5 + version = "0.8"; 6 + 7 + nativeBuildInputs = [ pkgconfig ]; 8 + buildInputs = [ libusb1 ]; 9 + 10 + src = fetchurl { 11 + url = "mirror://debian/pool/main/d/dfu-util/dfu-util_0.8.orig.tar.gz"; 12 + sha256 = "0n7h08avlzin04j93m6hkq9id6hxjiiix7ff9gc2n89aw6dxxjsm"; 13 + }; 14 + 15 + meta = with stdenv.lib; { 16 + description = "Device firmware update (DFU) USB programmer"; 17 + longDescription = '' 18 + dfu-util is a program that implements the host (PC) side of the USB 19 + DFU 1.0 and 1.1 (Universal Serial Bus Device Firmware Upgrade) protocol. 20 + 21 + DFU is intended to download and upload firmware to devices connected over 22 + USB. It ranges from small devices like micro-controller boards up to mobile 23 + phones. With dfu-util you are able to download firmware to your device or 24 + upload firmware from it. 25 + ''; 26 + homepage = http://dfu-util.gnumonks.org/; 27 + license = licenses.gpl2Plus; 28 + platforms = platforms.unix; 29 + maintainers = [ maintainers.fpletz ]; 30 + }; 31 + }
+2
pkgs/top-level/all-packages.nix
··· 5423 5423 5424 5424 dfu-programmer = callPackage ../development/tools/misc/dfu-programmer { }; 5425 5425 5426 + dfu-util = callPackage ../development/tools/misc/dfu-util { }; 5427 + 5426 5428 ddd = callPackage ../development/tools/misc/ddd { }; 5427 5429 5428 5430 distcc = callPackage ../development/tools/misc/distcc { };