diff options
| author | Caleb Norton <[email protected]> | 2026-03-28 18:39:03 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-03-28 18:39:03 -0500 |
| commit | 4f96eb239ffa5615bdb87ffbdd64e20904f447a5 (patch) | |
| tree | 21f2ac88823c12a02f6f328dfbf57c7d93c0a502 /nix/node_modules.nix | |
| parent | 38af99dcb47e92e4f25c7aa6344b5f8f9b766e1e (diff) | |
| download | opencode-4f96eb239ffa5615bdb87ffbdd64e20904f447a5.tar.gz opencode-4f96eb239ffa5615bdb87ffbdd64e20904f447a5.zip | |
fix: respect semver build identifiers for nix (#11915)
Diffstat (limited to 'nix/node_modules.nix')
| -rw-r--r-- | nix/node_modules.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/node_modules.nix b/nix/node_modules.nix index 6c188c07c..6b5958470 100644 --- a/nix/node_modules.nix +++ b/nix/node_modules.nix @@ -20,7 +20,7 @@ let in stdenvNoCC.mkDerivation { pname = "opencode-node_modules"; - version = "${packageJson.version}-${rev}"; + version = "${packageJson.version}+${lib.replaceString "-" "." rev}"; src = lib.fileset.toSource { root = ../.; |
