Loading pkgs/by-name/op/opencode/bundle.tsdeleted 100644 → 0 +0 −38 Original line number Diff line number Diff line #!/usr/bin/env bun import solidPlugin from "./node_modules/@opentui/solid/scripts/solid-plugin" import fs from "fs" const version = process.env.OPENCODE_VERSION! const channel = process.env.OPENCODE_CHANNEL! const result = await Bun.build({ target: "bun", outdir: "./dist", entrypoints: [ "./src/index.ts", "./src/cli/cmd/tui/worker.ts" ], plugins: [solidPlugin], naming: { entry: "[dir]/[name].js" }, define: { OPENCODE_VERSION: JSON.stringify(version), OPENCODE_CHANNEL: JSON.stringify(channel), }, external: [ "@opentui/core-*", ], }) if (!result.success) { console.error("Bundle failed:", result.logs) process.exit(1) } // Move worker file to worker.ts at the dist root so the code can find it if (fs.existsSync("./dist/cli/cmd/tui/worker.js")) { fs.renameSync("./dist/cli/cmd/tui/worker.js", "./dist/worker.ts") fs.rmdirSync("./dist/cli/cmd/tui", { recursive: true }) } pkgs/by-name/op/opencode/package.nix +51 −116 Original line number Diff line number Diff line Loading @@ -8,8 +8,8 @@ models-dev, nix-update-script, ripgrep, testers, installShellFiles, versionCheckHook, writableTmpDirAsHomeHook, }: let Loading @@ -19,7 +19,7 @@ let owner = "anomalyco"; repo = "opencode"; tag = "v${version}"; hash = "sha256-B0NkJ4HSxgdjBuydvjcNcoaW5WIYcuKV8qHYapAaDmU="; hash = "sha256-uNeje6WZ/FJVOtxdTdWXbWhPl7BwMws+7/Iz2Hz/stw="; }; node_modules = stdenvNoCC.mkDerivation { Loading @@ -41,20 +41,15 @@ let buildPhase = '' runHook preBuild export BUN_INSTALL_CACHE_DIR=$(mktemp -d) bun install \ --cpu="*" \ --filter=./packages/opencode \ --force \ --frozen-lockfile \ --ignore-scripts \ --no-progress \ --os="*" \ --production --os="*" bun run ./nix/scripts/canonicalize-node-modules.ts bun run ./nix/scripts/normalize-bun-binaries.ts bun --bun ./nix/scripts/canonicalize-node-modules.ts bun --bun ./nix/scripts/normalize-bun-binaries.ts runHook postBuild ''; Loading @@ -71,7 +66,7 @@ let # NOTE: Required else we get errors that our fixed-output derivation references store paths dontFixup = true; outputHash = "sha256-vRIWQt02VljcoYG3mwJy8uCihSTB/OLypyw+vt8LuL8="; outputHash = "sha256-OJ3C4RMzfbbG1Fwa/5yru0rlISj+28UPITMNBEU5AeM="; outputHashAlgo = "sha256"; outputHashMode = "recursive"; }; Loading @@ -95,37 +90,38 @@ stdenvNoCC.mkDerivation (finalAttrs: { patches = [ # NOTE: Relax Bun version check to be a warning instead of an error ./relax-bun-version-check.patch # NOTE: Remove special and windows build targes ./remove-special-and-windows-build-targets.patch ]; dontConfigure = true; configurePhase = '' runHook preConfigure cp -R ${node_modules}/. . runHook postConfigure ''; env.MODELS_DEV_API_JSON = "${models-dev}/dist/_api.json"; env.OPENCODE_VERSION = finalAttrs.version; env.OPENCODE_CHANNEL = "stable"; preBuild = '' chmod -R u+w ./packages/opencode/node_modules pushd ./packages/opencode/node_modules/@opentui/ for pkg in ../../../../node_modules/.bun/@opentui+core-*; do linkName=$(basename "$pkg" | sed 's/@.*+\(.*\)@.*/\1/') ln -sf "$pkg/node_modules/@opentui/$linkName" "$linkName" done popd ''; buildPhase = '' runHook preBuild # Copy all node_modules including the .bun directory with actual packages cp -r ${finalAttrs.node_modules}/node_modules . cp -r ${finalAttrs.node_modules}/packages . ( cd packages/opencode # Fix symlinks to workspace packages chmod -R u+w ./node_modules mkdir -p ./node_modules/@opencode-ai rm -f ./node_modules/@opencode-ai/{script,sdk,plugin} ln -s $(pwd)/../../packages/script ./node_modules/@opencode-ai/script ln -s $(pwd)/../../packages/sdk/js ./node_modules/@opencode-ai/sdk ln -s $(pwd)/../../packages/plugin ./node_modules/@opencode-ai/plugin # Use upstream bundle.ts for Nix-compatible bundling cp ../../nix/bundle.ts ./bundle.ts chmod +x ./bundle.ts bun run ./bundle.ts ) cd ./packages/opencode bun --bun ./script/build.ts --single --skip-install bun --bun ./script/schema.ts schema.json runHook postBuild ''; Loading @@ -133,93 +129,37 @@ stdenvNoCC.mkDerivation (finalAttrs: { installPhase = '' runHook preInstall cd packages/opencode if [ ! -d dist ]; then echo "ERROR: dist directory missing after bundle step" exit 1 fi mkdir -p $out/lib/opencode cp -r dist $out/lib/opencode/ chmod -R u+w $out/lib/opencode/dist # Select bundled worker assets deterministically (sorted find output) worker_file=$(find "$out/lib/opencode/dist" -type f \( -path '*/tui/worker.*' -o -name 'worker.*' \) | sort | head -n1) parser_worker_file=$(find "$out/lib/opencode/dist" -type f -name 'parser.worker.*' | sort | head -n1) if [ -z "$worker_file" ]; then echo "ERROR: bundled worker not found" exit 1 fi main_wasm=$(printf '%s\n' "$out"/lib/opencode/dist/tree-sitter-*.wasm | sort | head -n1) wasm_list=$(find "$out/lib/opencode/dist" -maxdepth 1 -name 'tree-sitter-*.wasm' -print) for patch_file in "$worker_file" "$parser_worker_file"; do [ -z "$patch_file" ] && continue [ ! -f "$patch_file" ] && continue if [ -n "$wasm_list" ] && grep -q 'tree-sitter' "$patch_file"; then # Rewrite wasm references to absolute store paths to avoid runtime resolve failures. bun --bun ../../nix/scripts/patch-wasm.ts "$patch_file" "$main_wasm" $wasm_list fi done install -Dm755 dist/opencode-*/bin/opencode $out/bin/opencode install -Dm644 schema.json $out/share/opencode/schema.json mkdir -p $out/lib/opencode/node_modules cp -r ../../node_modules/.bun $out/lib/opencode/node_modules/ mkdir -p $out/lib/opencode/node_modules/@opentui runHook postInstall ''; # Generate and install JSON schema mkdir -p $out/share/opencode HOME=$TMPDIR bun --bun script/schema.ts $out/share/opencode/schema.json postInstall = lib.optionalString (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) '' installShellCompletion --cmd opencode \ --bash <($out/bin/opencode completion) ''; mkdir -p $out/bin makeWrapper ${lib.getExe bun} $out/bin/opencode \ --add-flags "run" \ --add-flags "$out/lib/opencode/dist/src/index.js" \ postFixup = '' wrapProgram $out/bin/opencode \ --prefix PATH : ${ lib.makeBinPath [ fzf ripgrep ] } \ --argv0 opencode runHook postInstall ''; postInstall = '' # Add symlinks for platform-specific native modules pkgs=( $out/lib/opencode/node_modules/.bun/@opentui+core-* $out/lib/opencode/node_modules/.bun/@opentui+solid-* $out/lib/opencode/node_modules/.bun/@opentui+core@* $out/lib/opencode/node_modules/.bun/@opentui+solid@* ) for pkg in "''${pkgs[@]}"; do if [ -d "$pkg" ]; then pkgName=$(basename "$pkg" | sed 's/@opentui+\([^@]*\)@.*/\1/') ln -sf ../.bun/$(basename "$pkg")/node_modules/@opentui/$pkgName \ $out/lib/opencode/node_modules/@opentui/$pkgName fi done ${lib.optionalString ( (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) && (stdenvNoCC.hostPlatform.system != "x86_64-darwin") ) '' installShellCompletion --cmd opencode \ --bash <($out/bin/opencode completion) '' } ''; nativeInstallCheckInputs = [ versionCheckHook writableTmpDirAsHomeHook ]; doInstallCheck = true; versionCheckKeepEnvironment = [ "HOME" ]; versionCheckProgramArg = "--version"; passthru = { jsonschema = "${placeholder "out"}/share/opencode/schema.json"; tests.version = testers.testVersion { package = finalAttrs.finalPackage; command = "HOME=$(mktemp -d) opencode --version"; inherit (finalAttrs) version; }; updateScript = nix-update-script { extraArgs = [ "--subpackage" Loading @@ -230,11 +170,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { meta = { description = "AI coding agent built for the terminal"; longDescription = '' OpenCode is a terminal-based agent that can build anything. It combines a TypeScript/JavaScript core with a Go-based TUI to provide an interactive AI coding experience. ''; homepage = "https://github.com/anomalyco/opencode"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ delafthi ]; Loading pkgs/by-name/op/opencode/remove-special-and-windows-build-targets.patch 0 → 100644 +100 −0 Original line number Diff line number Diff line From 4d0a82e8f3cf8bf011e2592677db4aa31b6b290b Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine <delafthi@pm.me> Date: Sun, 4 Jan 2026 20:55:49 +0100 Subject: [PATCH] Remove special and windows build targets --- packages/opencode/script/build.ts | 70 +++++++++++++++---------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/packages/opencode/script/build.ts b/packages/opencode/script/build.ts index f51cb2924..ee3c0e863 100755 --- a/packages/opencode/script/build.ts +++ b/packages/opencode/script/build.ts @@ -33,27 +33,27 @@ const allTargets: { os: "linux", arch: "x64", }, - { - os: "linux", - arch: "x64", - avx2: false, - }, - { - os: "linux", - arch: "arm64", - abi: "musl", - }, - { - os: "linux", - arch: "x64", - abi: "musl", - }, - { - os: "linux", - arch: "x64", - abi: "musl", - avx2: false, - }, + // { + // os: "linux", + // arch: "x64", + // avx2: false, + // }, + // { + // os: "linux", + // arch: "arm64", + // abi: "musl", + // }, + // { + // os: "linux", + // arch: "x64", + // abi: "musl", + // }, + // { + // os: "linux", + // arch: "x64", + // abi: "musl", + // avx2: false, + // }, { os: "darwin", arch: "arm64", @@ -62,20 +62,20 @@ const allTargets: { os: "darwin", arch: "x64", }, - { - os: "darwin", - arch: "x64", - avx2: false, - }, - { - os: "win32", - arch: "x64", - }, - { - os: "win32", - arch: "x64", - avx2: false, - }, + // { + // os: "darwin", + // arch: "x64", + // avx2: false, + // }, + // { + // os: "win32", + // arch: "x64", + // }, + // { + // os: "win32", + // arch: "x64", + // avx2: false, + // }, ] const targets = singleFlag -- 2.52.0 Loading
pkgs/by-name/op/opencode/bundle.tsdeleted 100644 → 0 +0 −38 Original line number Diff line number Diff line #!/usr/bin/env bun import solidPlugin from "./node_modules/@opentui/solid/scripts/solid-plugin" import fs from "fs" const version = process.env.OPENCODE_VERSION! const channel = process.env.OPENCODE_CHANNEL! const result = await Bun.build({ target: "bun", outdir: "./dist", entrypoints: [ "./src/index.ts", "./src/cli/cmd/tui/worker.ts" ], plugins: [solidPlugin], naming: { entry: "[dir]/[name].js" }, define: { OPENCODE_VERSION: JSON.stringify(version), OPENCODE_CHANNEL: JSON.stringify(channel), }, external: [ "@opentui/core-*", ], }) if (!result.success) { console.error("Bundle failed:", result.logs) process.exit(1) } // Move worker file to worker.ts at the dist root so the code can find it if (fs.existsSync("./dist/cli/cmd/tui/worker.js")) { fs.renameSync("./dist/cli/cmd/tui/worker.js", "./dist/worker.ts") fs.rmdirSync("./dist/cli/cmd/tui", { recursive: true }) }
pkgs/by-name/op/opencode/package.nix +51 −116 Original line number Diff line number Diff line Loading @@ -8,8 +8,8 @@ models-dev, nix-update-script, ripgrep, testers, installShellFiles, versionCheckHook, writableTmpDirAsHomeHook, }: let Loading @@ -19,7 +19,7 @@ let owner = "anomalyco"; repo = "opencode"; tag = "v${version}"; hash = "sha256-B0NkJ4HSxgdjBuydvjcNcoaW5WIYcuKV8qHYapAaDmU="; hash = "sha256-uNeje6WZ/FJVOtxdTdWXbWhPl7BwMws+7/Iz2Hz/stw="; }; node_modules = stdenvNoCC.mkDerivation { Loading @@ -41,20 +41,15 @@ let buildPhase = '' runHook preBuild export BUN_INSTALL_CACHE_DIR=$(mktemp -d) bun install \ --cpu="*" \ --filter=./packages/opencode \ --force \ --frozen-lockfile \ --ignore-scripts \ --no-progress \ --os="*" \ --production --os="*" bun run ./nix/scripts/canonicalize-node-modules.ts bun run ./nix/scripts/normalize-bun-binaries.ts bun --bun ./nix/scripts/canonicalize-node-modules.ts bun --bun ./nix/scripts/normalize-bun-binaries.ts runHook postBuild ''; Loading @@ -71,7 +66,7 @@ let # NOTE: Required else we get errors that our fixed-output derivation references store paths dontFixup = true; outputHash = "sha256-vRIWQt02VljcoYG3mwJy8uCihSTB/OLypyw+vt8LuL8="; outputHash = "sha256-OJ3C4RMzfbbG1Fwa/5yru0rlISj+28UPITMNBEU5AeM="; outputHashAlgo = "sha256"; outputHashMode = "recursive"; }; Loading @@ -95,37 +90,38 @@ stdenvNoCC.mkDerivation (finalAttrs: { patches = [ # NOTE: Relax Bun version check to be a warning instead of an error ./relax-bun-version-check.patch # NOTE: Remove special and windows build targes ./remove-special-and-windows-build-targets.patch ]; dontConfigure = true; configurePhase = '' runHook preConfigure cp -R ${node_modules}/. . runHook postConfigure ''; env.MODELS_DEV_API_JSON = "${models-dev}/dist/_api.json"; env.OPENCODE_VERSION = finalAttrs.version; env.OPENCODE_CHANNEL = "stable"; preBuild = '' chmod -R u+w ./packages/opencode/node_modules pushd ./packages/opencode/node_modules/@opentui/ for pkg in ../../../../node_modules/.bun/@opentui+core-*; do linkName=$(basename "$pkg" | sed 's/@.*+\(.*\)@.*/\1/') ln -sf "$pkg/node_modules/@opentui/$linkName" "$linkName" done popd ''; buildPhase = '' runHook preBuild # Copy all node_modules including the .bun directory with actual packages cp -r ${finalAttrs.node_modules}/node_modules . cp -r ${finalAttrs.node_modules}/packages . ( cd packages/opencode # Fix symlinks to workspace packages chmod -R u+w ./node_modules mkdir -p ./node_modules/@opencode-ai rm -f ./node_modules/@opencode-ai/{script,sdk,plugin} ln -s $(pwd)/../../packages/script ./node_modules/@opencode-ai/script ln -s $(pwd)/../../packages/sdk/js ./node_modules/@opencode-ai/sdk ln -s $(pwd)/../../packages/plugin ./node_modules/@opencode-ai/plugin # Use upstream bundle.ts for Nix-compatible bundling cp ../../nix/bundle.ts ./bundle.ts chmod +x ./bundle.ts bun run ./bundle.ts ) cd ./packages/opencode bun --bun ./script/build.ts --single --skip-install bun --bun ./script/schema.ts schema.json runHook postBuild ''; Loading @@ -133,93 +129,37 @@ stdenvNoCC.mkDerivation (finalAttrs: { installPhase = '' runHook preInstall cd packages/opencode if [ ! -d dist ]; then echo "ERROR: dist directory missing after bundle step" exit 1 fi mkdir -p $out/lib/opencode cp -r dist $out/lib/opencode/ chmod -R u+w $out/lib/opencode/dist # Select bundled worker assets deterministically (sorted find output) worker_file=$(find "$out/lib/opencode/dist" -type f \( -path '*/tui/worker.*' -o -name 'worker.*' \) | sort | head -n1) parser_worker_file=$(find "$out/lib/opencode/dist" -type f -name 'parser.worker.*' | sort | head -n1) if [ -z "$worker_file" ]; then echo "ERROR: bundled worker not found" exit 1 fi main_wasm=$(printf '%s\n' "$out"/lib/opencode/dist/tree-sitter-*.wasm | sort | head -n1) wasm_list=$(find "$out/lib/opencode/dist" -maxdepth 1 -name 'tree-sitter-*.wasm' -print) for patch_file in "$worker_file" "$parser_worker_file"; do [ -z "$patch_file" ] && continue [ ! -f "$patch_file" ] && continue if [ -n "$wasm_list" ] && grep -q 'tree-sitter' "$patch_file"; then # Rewrite wasm references to absolute store paths to avoid runtime resolve failures. bun --bun ../../nix/scripts/patch-wasm.ts "$patch_file" "$main_wasm" $wasm_list fi done install -Dm755 dist/opencode-*/bin/opencode $out/bin/opencode install -Dm644 schema.json $out/share/opencode/schema.json mkdir -p $out/lib/opencode/node_modules cp -r ../../node_modules/.bun $out/lib/opencode/node_modules/ mkdir -p $out/lib/opencode/node_modules/@opentui runHook postInstall ''; # Generate and install JSON schema mkdir -p $out/share/opencode HOME=$TMPDIR bun --bun script/schema.ts $out/share/opencode/schema.json postInstall = lib.optionalString (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) '' installShellCompletion --cmd opencode \ --bash <($out/bin/opencode completion) ''; mkdir -p $out/bin makeWrapper ${lib.getExe bun} $out/bin/opencode \ --add-flags "run" \ --add-flags "$out/lib/opencode/dist/src/index.js" \ postFixup = '' wrapProgram $out/bin/opencode \ --prefix PATH : ${ lib.makeBinPath [ fzf ripgrep ] } \ --argv0 opencode runHook postInstall ''; postInstall = '' # Add symlinks for platform-specific native modules pkgs=( $out/lib/opencode/node_modules/.bun/@opentui+core-* $out/lib/opencode/node_modules/.bun/@opentui+solid-* $out/lib/opencode/node_modules/.bun/@opentui+core@* $out/lib/opencode/node_modules/.bun/@opentui+solid@* ) for pkg in "''${pkgs[@]}"; do if [ -d "$pkg" ]; then pkgName=$(basename "$pkg" | sed 's/@opentui+\([^@]*\)@.*/\1/') ln -sf ../.bun/$(basename "$pkg")/node_modules/@opentui/$pkgName \ $out/lib/opencode/node_modules/@opentui/$pkgName fi done ${lib.optionalString ( (stdenvNoCC.buildPlatform.canExecute stdenvNoCC.hostPlatform) && (stdenvNoCC.hostPlatform.system != "x86_64-darwin") ) '' installShellCompletion --cmd opencode \ --bash <($out/bin/opencode completion) '' } ''; nativeInstallCheckInputs = [ versionCheckHook writableTmpDirAsHomeHook ]; doInstallCheck = true; versionCheckKeepEnvironment = [ "HOME" ]; versionCheckProgramArg = "--version"; passthru = { jsonschema = "${placeholder "out"}/share/opencode/schema.json"; tests.version = testers.testVersion { package = finalAttrs.finalPackage; command = "HOME=$(mktemp -d) opencode --version"; inherit (finalAttrs) version; }; updateScript = nix-update-script { extraArgs = [ "--subpackage" Loading @@ -230,11 +170,6 @@ stdenvNoCC.mkDerivation (finalAttrs: { meta = { description = "AI coding agent built for the terminal"; longDescription = '' OpenCode is a terminal-based agent that can build anything. It combines a TypeScript/JavaScript core with a Go-based TUI to provide an interactive AI coding experience. ''; homepage = "https://github.com/anomalyco/opencode"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ delafthi ]; Loading
pkgs/by-name/op/opencode/remove-special-and-windows-build-targets.patch 0 → 100644 +100 −0 Original line number Diff line number Diff line From 4d0a82e8f3cf8bf011e2592677db4aa31b6b290b Mon Sep 17 00:00:00 2001 From: Thierry Delafontaine <delafthi@pm.me> Date: Sun, 4 Jan 2026 20:55:49 +0100 Subject: [PATCH] Remove special and windows build targets --- packages/opencode/script/build.ts | 70 +++++++++++++++---------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/packages/opencode/script/build.ts b/packages/opencode/script/build.ts index f51cb2924..ee3c0e863 100755 --- a/packages/opencode/script/build.ts +++ b/packages/opencode/script/build.ts @@ -33,27 +33,27 @@ const allTargets: { os: "linux", arch: "x64", }, - { - os: "linux", - arch: "x64", - avx2: false, - }, - { - os: "linux", - arch: "arm64", - abi: "musl", - }, - { - os: "linux", - arch: "x64", - abi: "musl", - }, - { - os: "linux", - arch: "x64", - abi: "musl", - avx2: false, - }, + // { + // os: "linux", + // arch: "x64", + // avx2: false, + // }, + // { + // os: "linux", + // arch: "arm64", + // abi: "musl", + // }, + // { + // os: "linux", + // arch: "x64", + // abi: "musl", + // }, + // { + // os: "linux", + // arch: "x64", + // abi: "musl", + // avx2: false, + // }, { os: "darwin", arch: "arm64", @@ -62,20 +62,20 @@ const allTargets: { os: "darwin", arch: "x64", }, - { - os: "darwin", - arch: "x64", - avx2: false, - }, - { - os: "win32", - arch: "x64", - }, - { - os: "win32", - arch: "x64", - avx2: false, - }, + // { + // os: "darwin", + // arch: "x64", + // avx2: false, + // }, + // { + // os: "win32", + // arch: "x64", + // }, + // { + // os: "win32", + // arch: "x64", + // avx2: false, + // }, ] const targets = singleFlag -- 2.52.0