{ description = "ECP5 toolchain template project"; inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; flake-parts = { url = "github:hercules-ci/flake-parts"; inputs.nixpkgs-lib.follows = "nixpkgs"; }; }; outputs = inputs@{ flake-parts, ... }: flake-parts.lib.mkFlake { inherit inputs; } { systems = [ "x86_64-linux" "aarch64-linux" "aarch64-darwin" "x86_64-darwin" ]; perSystem = { config, self', inputs', pkgs, system, ... }: let toolchain-pkgs = with pkgs; [ yosys nextpnr trellis openfpgaloader ]; in { formatter = pkgs.nixfmt-rfc-style; packages.default = pkgs.python3.pkgs.buildPythonPackage { name = "groovylight"; version = "0.0.1"; src = ./.; format = "pyproject"; build-system = [ pkgs.python3.pkgs.pdm-backend ]; propagatedBuildInputs = [ pkgs.python3.pkgs.amaranth pkgs.python3.pkgs.amaranth-boards ]; doCheck = true; nativeCheckInputs = with pkgs; [ python3.pkgs.pytestCheckHook ] ++ toolchain-pkgs; }; devShells.default = pkgs.mkShell { packages = with pkgs; [ (python3.withPackages ( pypkgs: with pypkgs; [ amaranth amaranth-boards self'.packages.default ] )) ecpdap # easier to poke probes. ] ++ toolchain-pkgs; }; }; }; }