repomix: 1.13.1 -> 1.14.0 (#516101)

This commit is contained in:
kirillrdy
2026-05-07 06:28:11 +00:00
committed by GitHub
2 changed files with 13 additions and 4 deletions

View File

@@ -30036,6 +30036,12 @@
githubId = 973709;
name = "Jairo Llopis";
};
yamadashy = {
email = "koukun0120@gmail.com";
github = "yamadashy";
githubId = 5019072;
name = "Kazuki Yamada";
};
yamashitax = {
email = "hello@yamashit.ax";
github = "yamashitax";

View File

@@ -8,16 +8,16 @@
buildNpmPackage rec {
pname = "repomix";
version = "1.13.1";
version = "1.14.0";
src = fetchFromGitHub {
owner = "yamadashy";
repo = "repomix";
tag = "v${version}";
hash = "sha256-5wSXkOialqwel/yaxLntc9QnqaersT9Q0aMzWaCz9Xs=";
hash = "sha256-xvRCblm7WRvxFBjsxe3AjvLt8AvL4Q9F6SQuOv39ADA=";
};
npmDepsHash = "sha256-MYVGGg5I7Lbem1uazED827G1ZKQ9Xu6ONNjey8G6hA0=";
npmDepsHash = "sha256-Pw2/w0rn5UloUqPZrze2l1Qi7JEdAXxlpPm7dxEHzWU=";
nativeInstallCheckInputs = [ versionCheckHook ];
doInstallCheck = true;
@@ -37,7 +37,10 @@ buildNpmPackage rec {
homepage = "https://github.com/yamadashy/repomix";
changelog = "https://github.com/yamadashy/repomix/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ boralg ];
maintainers = with lib.maintainers; [
boralg
yamadashy
];
mainProgram = "repomix";
};
}