Unverified Commit 395084d8 authored by Cosima Neidahl's avatar Cosima Neidahl Committed by GitHub
Browse files

corestore: 7.1.0 -> 7.4.5 (#430630)

parents 524237d6 1c9bc048
Loading
Loading
Loading
Loading
+628 −271

File changed.

Preview size limit exceeded, changes collapsed.

+4 −3
Original line number Diff line number Diff line
@@ -7,20 +7,21 @@

buildNpmPackage (finalAttrs: {
  pname = "corestore";
  version = "7.1.0";
  version = "7.4.5";

  src = fetchFromGitHub {
    owner = "holepunchto";
    repo = "corestore";
    tag = "v${finalAttrs.version}";
    hash = "sha256-lbbjYWJah1A2/ySBTI2Mg78dRjLyt/TJ5rhqBPxWOps=";
    hash = "sha256-wuf7bPxHuzic2B4HCH7emM1+jc7gw+l5Sm/LCYnpvs4=";
  };

  npmDepsHash = "sha256-3WfcomAOE+u/ZIn5M+sP/GkxArXx5IRFzf0IG4ykaiU=";
  npmDepsHash = "sha256-hQYvQeTwlIWImdNhgpnJjDC24Fx4G0eST7tptWV1Xgw=";

  dontNpmBuild = true;

  # ERROR: Missing package-lock.json from src
  # Upstream doesn't want to maintain a lockfile in their repo: https://github.com/holepunchto/corestore/issues/119
  # Copy vendored package-lock.json to src via postPatch
  postPatch = ''
    cp ${./package-lock.json} ./package-lock.json