Files
nixpkgs/pkgs/development/python-modules/fx2/default.nix
T
Emily 4b1d39d935 treewide: remove myself from packages I don’t use
I’ve had an extended absence from Nix work and no longer actively
use a bunch of packages I used to maintain, so remove myself as a
maintainer from things I can’t usefully review/test changes for
as I ease back into things. This does unfortunately leave a few
packages orphaned (`stm32loader`, `tinyprog`, `python3Packages.fx2`,
and `python3Packages.jsonmerge`).
2024-06-15 16:53:23 +01:00

52 lines
1018 B
Nix

{
lib,
buildPythonPackage,
python,
fetchFromGitHub,
sdcc,
libusb1,
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 = [ 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 = with maintainers; [ ];
};
}