groovylight/flake.nix
Saji 3205c7104e
All checks were successful
Unit Tests / Test (push) Successful in 2m19s
update ci test flow
2024-09-26 10:03:57 -05:00

82 lines
1.9 KiB
Nix

{
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;
};
};
};
}