Unverified Commit 83dd6dca authored by dish's avatar dish Committed by GitHub
Browse files

cbmp: use fetchYarnDeps instead of buildNpmPackage (#499455)

parents d68202f3 7a2c69c3
Loading
Loading
Loading
Loading
+0 −2383

File deleted.

Preview size limit exceeded, changes collapsed.

+24 −16
Original line number Diff line number Diff line
{
  buildNpmPackage,
  fetchFromGitHub,
  lib,
  stdenv,
  fetchFromGitHub,
  fetchYarnDeps,
  yarnConfigHook,
  yarnBuildHook,
  yarnInstallHook,
  nodejs,
  nix-update-script,
}:

buildNpmPackage rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "cbmp";
  version = "1.1.1";

  # note: updating notes
  # - use `prefetch-npm-deps` package for src hash
  # - use `npm install --package-lock-only`
  #   in the cbmp repo for package-lock generation
  # - update npmDepsHash

  src = fetchFromGitHub {
    owner = "ful1e5";
    repo = "cbmp";
    rev = "v${version}";
    rev = "v${finalAttrs.version}";
    hash = "sha256-vOEz2KGJLCiiX+Or9y0JE9UF7sYbwaSCVm5iBv4jIdI=";
  };

  npmDepsHash = "sha256-aiCJKutOnxnRNVy+b/LoIXNCLnFiFIBsczRrX6qMrps=";
  yarnOfflineCache = fetchYarnDeps {
    yarnLock = finalAttrs.src + "/yarn.lock";
    hash = "sha256-9iGfwMyy+cmIp7A5qOderuyL/0wrJ/zCTFPyLL/w3qE=";
  };

  env = {
    PUPPETEER_SKIP_DOWNLOAD = true;
  };

  postPatch = ''
    cp ${./package-lock.json} package-lock.json
  '';
  nativeBuildInputs = [
    yarnConfigHook
    yarnBuildHook
    yarnInstallHook
    nodejs
  ];

  passthru.updateScript = nix-update-script { };

  meta = {
    description = "CLI App for converting cursor svg file to png";
    description = "CLI App for converting cursor svg files to png";
    homepage = "https://github.com/ful1e5/cbmp";
    license = lib.licenses.mit;
    maintainers = [ lib.maintainers.mrtnvgr ];
    mainProgram = "cbmp";
  };
}
})