@norskvideo/ctl-dev-kit 0.1.86 → 0.1.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/flake.nix +9 -0
- package/package.json +1 -1
package/build/flake.nix
CHANGED
|
@@ -87,6 +87,15 @@
|
|
|
87
87
|
buildTools = [
|
|
88
88
|
biome
|
|
89
89
|
pkgs.bun
|
|
90
|
+
pkgs.nodejs # @biomejs/biome's bin is a JS wrapper, not the binary —
|
|
91
|
+
# it is what reads BIOME_BINARY below and execs the nix
|
|
92
|
+
# build. Something has to *parse* that wrapper first, so a
|
|
93
|
+
# modern node has to be on PATH or the host's is used: on
|
|
94
|
+
# an older distro node (Ubuntu noble ships v12) `bun run
|
|
95
|
+
# lint` dies on the wrapper's optional chaining before
|
|
96
|
+
# biome ever starts. norsk-ctl carries nodejs for kubb and
|
|
97
|
+
# so never hit this; the split-out products had nothing
|
|
98
|
+
# putting node in the shell.
|
|
90
99
|
pkgs.cargo # builds the native product-signer addon (probe/native)
|
|
91
100
|
pkgs.rustc
|
|
92
101
|
pkgs.git
|