nixpkgs/pkgs/development/embedded/wch-isp/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
734 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, pkg-config, libusb1 }:
stdenv.mkDerivation rec {
pname = "wch-isp";
2023-05-23 09:31:56 +02:00
version = "0.2.5";
src = fetchFromGitHub {
owner = "jmaselbas";
repo = pname;
rev = "v${version}";
2023-05-23 09:31:56 +02:00
hash = "sha256-JF1g2Qb1gG93lSaDQvltT6jCYk/dKntsIJPkQXYUvX4=";
};
nativeBuildInputs = [ pkg-config ];
buildInputs = [ libusb1 ];
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ];
installTargets = [ "install" "install-rules" ];
meta = {
description = "Firmware programmer for WCH microcontrollers over USB";
license = lib.licenses.gpl2Only;
homepage = "https://github.com/jmaselbas/wch-isp";
maintainers = with lib.maintainers; [ lesuisse ];
platforms = lib.platforms.unix;
};
}