5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
54 lines
1 KiB
Nix
54 lines
1 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
sdcc,
|
|
libusb1,
|
|
setuptools-scm,
|
|
crcmod,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "fx2";
|
|
version = "0.13";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "whitequark";
|
|
repo = "libfx2";
|
|
rev = "v${version}";
|
|
hash = "sha256-PtWxjT+97+EeNMN36zOT1+ost/w3lRRkaON3Cl3dpp4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
sdcc
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
libusb1
|
|
crcmod
|
|
];
|
|
|
|
preBuild = ''
|
|
make -C firmware
|
|
cd software
|
|
'';
|
|
|
|
preInstall = ''
|
|
mkdir -p $out/share/libfx2
|
|
cp -R ../firmware/library/{.stamp,lib,include,fx2{rules,conf}.mk} \
|
|
$out/share/libfx2
|
|
'';
|
|
|
|
# installCheckPhase tries to run build_ext again and there are no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Chip support package for Cypress EZ-USB FX2 series microcontrollers";
|
|
mainProgram = "fx2tool";
|
|
homepage = "https://github.com/whitequark/libfx2";
|
|
license = licenses.bsd0;
|
|
maintainers = [ ];
|
|
};
|
|
}
|