cbmp: use fetchYarnDeps instead of buildNpmPackage
This commit is contained in:
Generated
-2383
File diff suppressed because it is too large
Load Diff
@@ -1,41 +1,49 @@
|
||||
{
|
||||
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";
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user