about summary refs log tree commit diff
path: root/pkgs/by-name/wb/wb32-dfu-updater/package.nix
blob: fb144b7d6e2b7038d5938eda2ff874e4834a204b (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
32
33
{ lib
, stdenv
, fetchFromGitHub
, cmake
, libusb1
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "wb32-dfu-updater";
  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "WestberryTech";
    repo = finalAttrs.pname;
    rev = finalAttrs.version;
    hash = "sha256-DKsDVO00JFhR9hIZksFVJLRwC6PF9LCRpf++QywFO2w=";
  };

  nativeBuildInputs = [ cmake ];
  buildInputs = [ libusb1 ];

  meta = with lib; {
    description = "USB programmer for downloading and uploading firmware to/from USB devices.";
    longDescription = ''
      wb32-dfu-updater is a host tool used to download and upload firmware to/from WB32 MCU via USB. (wb32-dfu-updater_cli is the command line version).
    '';
    homepage = "https://github.com/WestberryTech/wb32-dfu-updater";
    license = licenses.asl20;
    maintainers = [ maintainers.liketechnik ];
    mainProgram = "wb32-dfu-updater_cli";
    platforms = platforms.all;
  };
})