Unverified Commit a903d694 authored by Adam C. Stephens's avatar Adam C. Stephens Committed by GitHub
Browse files

opencode: 1.1.41 -> 1.1.47 (#485439)

parents de5e8b1c f42538a0
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
@@ -14,12 +14,12 @@
}:
stdenvNoCC.mkDerivation (finalAttrs: {
  pname = "opencode";
  version = "1.1.41";
  version = "1.1.47";
  src = fetchFromGitHub {
    owner = "anomalyco";
    repo = "opencode";
    tag = "v${finalAttrs.version}";
    hash = "sha256-p4mZRJ+BQs790hjCOJ9iXzg3JoCa4lqOdCqDRkoEfWw=";
    hash = "sha256-f6TVxKV9q2yEQ9r9VCTttXLqpOrYdTEKDUJs+MuQJCQ=";
  };

  node_modules = stdenvNoCC.mkDerivation {
@@ -68,7 +68,11 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    # NOTE: Required else we get errors that our fixed-output derivation references store paths
    dontFixup = true;

    outputHash = "sha256-bjSPHxPTyzhMOztd7HjUl/lvMZYVk944xPj8ADDn5Y4=";
    outputHash =
      if stdenvNoCC.hostPlatform.isDarwin then
        "sha256-BJmyALnZEiAnC8+bsri5Me1Z0Vtf6A/27e7Eve4IvDo="
      else
        "sha256-zkinMkPR1hCBbB5BIuqozQZDpjX4eiFXjM6lpwUx1fM=";
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
  };