587713944a
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
28 lines
770 B
Nix
28 lines
770 B
Nix
{ lib, stdenv, fetchFromSourcehut, pkg-config, libusb1 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wch-isp";
|
|
version = "0.4.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
owner = "~jmaselbas";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-JB7cvZPzRhYJ8T3QJkguHOzZFrLOft5rRz0F0sVav/k=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ libusb1 ];
|
|
|
|
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
|
|
installTargets = [ "install" "install-rules" ];
|
|
|
|
meta = {
|
|
description = "Firmware programmer for WCH microcontrollers over USB";
|
|
mainProgram = "wch-isp";
|
|
license = lib.licenses.gpl2Only;
|
|
homepage = "https://git.sr.ht/~jmaselbas/wch-isp";
|
|
maintainers = with lib.maintainers; [ lesuisse ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
}
|