diff --git a/package.nix b/package.nix index c3e8026..db24453 100644 --- a/package.nix +++ b/package.nix @@ -81,10 +81,12 @@ stdenvNoCC.mkDerivation (finalAttrs: { bun install \ --filter=opencode \ --force \ - --frozen-lockfile \ --ignore-scripts \ - --no-progress \ - --production + --no-progress + # Remove `--frozen-lockfile` and `--production` — they erroneously report the lockfile needs updating even though `bun install` does not change it. + # Related to https://github.com/oven-sh/bun/issues/19088 + # --frozen-lockfile \ + # --production runHook postBuild ''; @@ -188,7 +190,13 @@ stdenvNoCC.mkDerivation (finalAttrs: { homepage = "https://github.com/sst/opencode"; license = lib.licenses.mit; platforms = lib.platforms.unix; - maintainers = [ { email = "aodhan.hayter@gmail.com"; github = "AodhanHayter"; name = "Aodhan Hayter"; } ]; + maintainers = [ + { + email = "aodhan.hayter@gmail.com"; + github = "AodhanHayter"; + name = "Aodhan Hayter"; + } + ]; mainProgram = "opencode"; }; })