Bryton Hall
Bryton Hall
Is `libusb` installed on your system? ldconfig -p | grep libusb
Does `riscv-openocd/Makefile.in` exist? If not, remove `riscv-openocd/configure` and run `./build.sh` again (it will run `autoreconf` which will create the required `Makefile.in` for `configure` to use).
You should mark any output as code (that is, enclose it in three backticks: \`\`\`) to avoid having it parsed as Markdown. The variable names in `riscv-openocd/src/Makefile.am` shouldn't end with...
No problem; I think your version of `automake` is too old to know how to expand those variables. Which version are you using?
`%C%` is expanded to the absolute pathname of a fragment in an include directive ([docs](https://www.gnu.org/software/automake/manual/automake.html#Include)) But this feature seems to have been added in [1.14](https://lists.gnu.org/archive/html/info-gnu/2013-06/msg00009.html). Can you upgrade to at...
Is `libtool` installed on your system?
Well . . . here's an easier workaround: just manually run `poetry lock` then vendor it alongside the derivation: ```nix poetrylock = ./poetry.lock; ``` That's much simpler and doesn't require...
Yeah, will split it up later today. I figured you might have a better opinion on package names so I left them pretty generic to punt that decision; happy to...
I've moved all of the `pd690xx` changes to #31.
What's the error? I'm guessing it doesn't like `inputs.mach-nix.condaChannelsExtra`. Try removing that and replacing ```nix { mach = mach-nix.lib.${system}; } ``` with something along these lines ```nix { mach =...