Unverified Commit f4b140d5 authored by Gaétan Lepage's avatar Gaétan Lepage Committed by GitHub
Browse files

opencode: fix hash (#443986)

parents 09803baa 1ec64b08
Loading
Loading
Loading
Loading
+8 −1
Original line number Diff line number Diff line
@@ -103,7 +103,14 @@ stdenvNoCC.mkDerivation (finalAttrs: {
    # Required else we get errors that our fixed-output derivation references store paths
    dontFixup = true;

    outputHash = "sha256-sibjZaPzA4r/CjHg0ual5ueEELDUU1jeZjDnZEMrozI=";
    outputHash =
      {
        x86_64-linux = "sha256-fGf2VldMlxbr9pb3B6zVL+fW1S8bRjefJW+jliTO73A=";
        aarch64-linux = "sha256-jEsDrC/uNZKx7TvD1X9ToTFFTBgrKIeSXd5cTPBvxGI=";
        x86_64-darwin = "sha256-U2F3mXas/iMOCqQgBY34crHtkPx5wOMeFClUAGEj4Go=";
        aarch64-darwin = "sha256-sibjZaPzA4r/CjHg0ual5ueEELDUU1jeZjDnZEMrozI=";
      }
      .${stdenv.hostPlatform.system};
    outputHashAlgo = "sha256";
    outputHashMode = "recursive";
  };