Files
nixpkgs/pkgs/development/python-modules/fx2/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

55 lines
1.0 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 = {
description = "Chip support package for Cypress EZ-USB FX2 series microcontrollers";
mainProgram = "fx2tool";
homepage = "https://github.com/whitequark/libfx2";
license = lib.licenses.bsd0;
maintainers = [ ];
};
}