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

codebuff: 1.0.635 -> 1.0.638 (#507742)

parents f583076d 15b465a7
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@
  "packages": {
    "": {
      "dependencies": {
        "codebuff": "^1.0.635"
        "codebuff": "^1.0.638"
      }
    },
    "node_modules/@isaacs/fs-minipass": {
@@ -30,9 +30,9 @@
      }
    },
    "node_modules/codebuff": {
      "version": "1.0.635",
      "resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.635.tgz",
      "integrity": "sha512-WjryNPaDPLKZ22vspoib6B5q9S9AIIxqJjbrB3kBj5e7vLx+BDlxMqwbvw4ywzzO/7+P62vOyJ99WFA7l86SNw==",
      "version": "1.0.638",
      "resolved": "https://registry.npmjs.org/codebuff/-/codebuff-1.0.638.tgz",
      "integrity": "sha512-AVjN8qPQ+7gZ30Y1NpdtycatSKg/K4FPRrgAr1Lc/tYQ7kmfTKopYpPiawF2Q+v3pO9K2jFNoVihvcLzEv+ewA==",
      "cpu": [
        "x64",
        "arm64"
+8 −6
Original line number Diff line number Diff line
@@ -4,16 +4,18 @@
  fetchzip,
}:

buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
  pname = "codebuff";
  version = "1.0.635";
  version = "1.0.638";

  src = fetchzip {
    url = "https://registry.npmjs.org/codebuff/-/codebuff-${version}.tgz";
    hash = "sha256-IKo/00XmqRvKq3OHc3Fu0/r3fvecKB+E2syuA5jw3Cc=";
    url = "https://registry.npmjs.org/codebuff/-/codebuff-${finalAttrs.version}.tgz";
    hash = "sha256-Fyu2T3HGwKfECiw0zyRMH29iDAlrtpzvkoqswJiPl6Y=";
  };

  npmDepsHash = "sha256-u1xkAQjSeVg6M/1hyDAl0LGjUdu91O9gk95svipy7pw=";
  strictDeps = true;

  npmDepsHash = "sha256-Wb0FbeuzkKg3ljirUFX2ZHx1WS1K2lyuha9qWUncsiI=";

  postPatch = ''
    cp ${./package-lock.json} package-lock.json
@@ -31,4 +33,4 @@ buildNpmPackage rec {
    maintainers = [ lib.maintainers.malo ];
    mainProgram = "codebuff";
  };
}
})