# The `kitchen` CLI compiled to a self-contained native binary. { lib, bun2nix }: bun2nix.mkDerivation { pname = "kitchen"; version = (lib.importJSON ./packages/bin/package.json).version; src = ./.; module = "packages/bin/src/index.ts"; bunDeps = bun2nix.fetchBunDeps { bunNix = ./bun.nix; }; # No vendored dependency needs install-time lifecycle scripts, and running # them would fire this repo's own `postinstall` (bun2nix) inside the sandbox, # where it is redundant. dontRunLifecycleScripts = true; }