Hi Jesse, I know very little about what you're trying to do, but there's one thing that looked wrong to me:
On Wed, Feb 07 2024, Jesse wrote: > ... > (build-system crosstool-ng) > ... This isn't a build system, right? It's just the package? I think you may want crosstool-ng-build-system here. That might be what's causing the error: > ... > In guix/build-system.scm: > 94:2 3 (make-bag _ _ #:source _ #:inputs _ #:native-inputs _ # …) > In ice-9/boot-9.scm: > 1685:16 2 (raise-exception _ #:continuable? _) > 1685:16 1 (raise-exception _ #:continuable? _) > 1685:16 0 (raise-exception _ #:continuable? _) > > ice-9/boot-9.scm:1685:16: In procedure raise-exception: > Throw to key `match-error' with args `("match" "no matching pattern" > #<package crosstool-ng@1.26.0 > embedded-dev/embedded-dev/packages/crosstool-ng.scm:26 > 7fd09cb334d0>)'. Looking in make-bag (in guix/build-system.scm), the first think it does it pattern match on the build system expecting a record of the <build-system> type. Your package doesn't match that pattern, so this error is raised. Carlo