![aleksana](/assets/img/avatar_default.png)
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.
23 lines
665 B
Nix
23 lines
665 B
Nix
{ lib, stdenv, fetchurl, libusb-compat-0_1 }:
|
|
stdenv.mkDerivation rec {
|
|
pname = "dfu-programmer";
|
|
version = "0.7.2";
|
|
|
|
buildInputs = [ libusb-compat-0_1 ];
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/dfu-programmer/${pname}-${version}.tar.gz";
|
|
sha256 = "15gr99y1z9vbvhrkd25zqhnzhg6zjmaam3vfjzf2mazd39mx7d0x";
|
|
};
|
|
|
|
configureFlags = [ "--disable-libusb_1_0" ];
|
|
|
|
meta = with lib; {
|
|
license = licenses.gpl2;
|
|
description = "Device Firmware Update based USB programmer for Atmel chips with a USB bootloader";
|
|
mainProgram = "dfu-programmer";
|
|
homepage = "http://dfu-programmer.sourceforge.net/";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|