opencommit: 3.2.7 -> 3.2.9 (#423185)

This commit is contained in:
Matteo Pacini
2025-07-09 14:34:44 +01:00
committed by GitHub
+9 -3
View File
@@ -3,20 +3,26 @@
buildNpmPackage,
fetchFromGitHub,
nix-update-script,
npm-lockfile-fix,
}:
buildNpmPackage rec {
pname = "opencommit";
version = "3.2.7";
version = "3.2.9";
src = fetchFromGitHub {
owner = "di-sukharev";
repo = "opencommit";
rev = "v${version}";
hash = "sha256-vmVOrNwUsgB3iBvO8QhpJfI2OO0Kb9ZthcAXVaQ2cBM=";
hash = "sha256-nn+Whjs3qLXhydrELXzogr66H6btY/TPbmWT/MH6w+M=";
postFetch = ''
cd $out
# Fix lockfile issues with bundled dependencies
${lib.getExe npm-lockfile-fix} package-lock.json
'';
};
npmDepsHash = "sha256-F19xbiZoIC2JA+3rLqJBbFZvs2XbAk94F2borp/7gMo=";
npmDepsHash = "sha256-1lUMtQFGlM1Z2oQ4nktsePyce/EwAu75BbkBiqBrdnQ=";
passthru.updateScript = nix-update-script { };