nixpkgs/pkgs/development/python-modules/fx2/default.nix
Jack Leightcap dd435a6c4e pythonPackages.fx2: 0.9 -> 0.11
Signed-off-by: Jack Leightcap <jack@leightcap.com>
2023-05-10 19:53:35 -05:00

46 lines
951 B
Nix

{ lib
, buildPythonPackage
, python
, fetchFromGitHub
, sdcc
, libusb1
, crcmod
}:
buildPythonPackage rec {
pname = "fx2";
version = "0.11";
src = fetchFromGitHub {
owner = "whitequark";
repo = "libfx2";
rev = "v${version}";
hash = "sha256-uJpXsUMFqJY7mjj1rtfc0XWEfNDxO1xXobgBDGFHnp4=";
};
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";
homepage = "https://github.com/whitequark/libfx2";
license = licenses.bsd0;
maintainers = with maintainers; [ emily ];
};
}