7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
38 lines
1,012 B
Nix
38 lines
1,012 B
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, libusb1, AppKit }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "ecpdap";
|
|
version = "0.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "adamgreig";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-pgQqDRdewBSCm1/9/r8E9DBzwSKAaons3e6OLNv5gHM=";
|
|
};
|
|
|
|
cargoHash = "sha256-70Aq/gNfRv9JQyYWb7amYkfzFcNGCGbmCfJH4chbyyc=";
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libusb1 ]
|
|
++ lib.optional stdenv.hostPlatform.isDarwin AppKit;
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/etc/udev/rules.d
|
|
cp drivers/*.rules $out/etc/udev/rules.d
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to program ECP5 FPGAs";
|
|
mainProgram = "ecpdap";
|
|
longDescription = ''
|
|
ECPDAP allows you to program ECP5 FPGAs and attached SPI flash
|
|
using CMSIS-DAP probes in JTAG mode.
|
|
'';
|
|
homepage = "https://github.com/adamgreig/ecpdap";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ expipiplus1 ];
|
|
};
|
|
}
|
|
|