biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / embedded / wch-isp / default.nix
blob3021c875f08bdcba815eaf1d9717e75398928a3f
1 { lib, stdenv, fetchFromSourcehut, pkg-config, libusb1 }:
3 stdenv.mkDerivation rec {
4   pname = "wch-isp";
5   version = "0.4.1";
7   src = fetchFromSourcehut {
8     owner = "~jmaselbas";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-JB7cvZPzRhYJ8T3QJkguHOzZFrLOft5rRz0F0sVav/k=";
12   };
14   nativeBuildInputs = [ pkg-config ];
15   buildInputs = [ libusb1 ];
17   installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
18   installTargets = [ "install" "install-rules" ];
20   meta = {
21     description = "Firmware programmer for WCH microcontrollers over USB";
22     mainProgram = "wch-isp";
23     license = lib.licenses.gpl2Only;
24     homepage = "https://git.sr.ht/~jmaselbas/wch-isp";
25     maintainers = with lib.maintainers; [ lesuisse ];
26     platforms = lib.platforms.unix;
27   };