Archived
1
0
Fork 0
HDL development environment on Nix.
This repository has been archived on 2024-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
Amelia Cuss f36cd8a028 README: update note URL. 2024-04-27 17:46:48 +03:00
pkgs up2date. 2024-04-27 15:21:39 +03:00
rainhdx cxxsim: basic support. 2024-04-27 16:59:00 +03:00
.gitignore pull in rainhdx. 2024-02-17 22:39:01 +11:00
README.md README: update note URL. 2024-04-27 17:46:48 +03:00
amaranth-shell-hook.sh finish dainty refactor. 2024-02-17 21:30:12 +11:00
amaranth-yosys-shell-hook.sh finish dainty refactor. 2024-02-17 21:30:12 +11:00
flake.lock up2date. 2024-04-27 15:21:39 +03:00
flake.nix up2date. 2024-04-27 15:21:39 +03:00
hdx-setup-hook.sh rain yosys devShell working too. 2024-02-17 23:42:53 +11:00
yosys-shell-hook.sh yosys-shell-hook: set YOSYS. 2024-02-24 13:06:44 +11:00

hdx

hdx packages Amaranth (+ -boards, -stdio) and Yosys on Nix. These are already available in nixpkgs, but hdx also lets you use on-disk checkouts for Amaranth and/or Yosys. This lets you test your own changes (or debug crashes) in the context of your own project on Nix.

It also ships with Rain, a small framework for building projects with Amaranth. A Rain project also has a devShell for using an on-disk Yosys checkout. (Planned: Amaranth also, depending on how much work it is to get two editable checkouts at once.)

Usage

  • nix develop git+https://hrzn.ee/kivikakk/hdx

    This is the default mode of operation. Yosys and Amaranth are built and added to PATH.

    Amaranth is configured to use the Yosys built by hdx, and not its built-in one.

  • nix develop git+https://hrzn.ee/kivikakk/hdx#amaranth

    An Amaranth checkout in ./ or ./amaranth/ is expected, and installed in editable mode. Yosys is still built, added to PATH, and used by your Amaranth checkout as usual.

  • nix develop git+https://hrzn.ee/kivikakk/hdx#amaranth-yosys

    An Amaranth checkout is expected at ./amaranth/, and a Yosys checkout is expected at ./yosys. Amaranth is installed in editable mode. Yosys is configured to be compiled and installed to ./yosys/hdx-out/, and PATH has the output directory's bin subdirectory prepended. You'll need to actually make install Yosys at least once for this mode to function, including any use of Amaranth that depends on Yosys.

  • Your project's flake.nix

    {
      inputs.hdx.url = git+https://hrzn.ee/kivikakk/hdx;
    
      outputs = {
        self,
        nixpkgs,
        flake-utils,
        hdx,
      }:
        flake-utils.lib.eachDefaultSystem (system: let
          pkgs = nixpkgs.legacyPackages.${system};
        in {
          devShells.default = pkgs.mkShell {
            nativeBuildInputs = [
              hdx.packages.${system}.default
            ];
          };
        });
    }
    
    • Want to specify a different version of a dependency? WE HAVE A TOOL FOR THAT:

      inputs = {
        hdx.url = git+https://hrzn.ee/kivikakk/hdx;
        hdx.inputs.amaranth.url = git+https://codeberg.org/lilnyonker/amaranth?ref=my-feature-branch;
      };
      

Rain

To get started, you can use the included flake template:

mkdir nyonkomatic
cd nyonkomatic
nix flake init -t git+https://hrzn.ee/kivikakk/hdx#rainhdx

Then you can enter a development environment with nix develop. Try python -m proj to see what the default CLI options are.

There's a workable example at https://hrzn.ee/kivikakk/ledmatriks to check out.

If you want to use your own on-disk checkout of Yosys with your Rain project, nix develop .#yosys will expect a Yosys checkout at ./yosys or ../yosys.

Background

hdx originally reproduced the entire setup described in Installing an HDL toolchain from source in Nix, and mostly served as a way for me to learn Nix. It's since been refined in its scope.