about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/fxload/default.nix
blob: e8b9d0648bd8f636b1ad1babe6f09fc0a6442ecb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ lib
, stdenv
, libusb1
}:

stdenv.mkDerivation rec {
  pname = "fxload";
  version = libusb1.version;
  dontUnpack = true;
  dontBuild = true;
  dontConfigure = true;
  dontInstall = true;
  dontPatch = true;
  dontPatchELF = true;

  # fxload binary exist inside the `examples/bin` directory of `libusb1`
  postFixup = ''
    mkdir -p $out/bin
    ln -s ${passthru.libusb}/examples/bin/fxload $out/bin/fxload
  '';

  passthru.libusb = libusb1.override { withExamples = true; };

  meta = with lib; {
    homepage = "https://github.com/libusb/libusb";
    description = "Tool to upload firmware to into an21, fx, fx2, fx2lp and fx3 ez-usb devices";
    license = licenses.gpl2Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ realsnick ];
  };
}