Unverified Commit d6b7f323 authored by lassulus's avatar lassulus Committed by GitHub
Browse files

repomix: init at 0.2.6 (#365006)

parents e0fa4d8c ffde3ffa
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -22459,6 +22459,11 @@
    github = "thilobillerbeck";
    githubId = 7442383;
  };
  thinnerthinker = {
    name = "thinnerthinker";
    github = "thinnerthinker";
    githubId = 144260188;
  };
  thled = {
    name = "Thomas Le Duc";
    email = "dev@tleduc.de";
+43 −0
Original line number Diff line number Diff line
{
  lib,
  buildNpmPackage,
  fetchFromGitHub,
  nix-update-script,
  versionCheckHook,
}:

buildNpmPackage rec {
  pname = "repomix";
  version = "0.2.6";

  src = fetchFromGitHub {
    owner = "yamadashy";
    repo = "repomix";
    tag = "v${version}";
    hash = "sha256-ZYU85782Z6O69KkKu4h3OqJqAgaxktEgHkcfs2ms9xg=";
  };

  npmDepsHash = "sha256-r+RIa7ACXJv4/CutnN/3S36US6r7w0EkM9dA4ShWPdU=";

  nativeInstallCheckInputs = [ versionCheckHook ];
  doInstallCheck = true;

  doCheck = true;

  checkPhase = ''
    runHook preCheck
    npx vitest run
    runHook postCheck
  '';

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

  meta = {
    description = "Tool to pack repository contents to single file for AI consumption";
    homepage = "https://github.com/yamadashy/repomix";
    changelog = "https://github.com/yamadashy/repomix/releases/tag/v${version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ thinnerthinker ];
    mainProgram = "repomix";
  };
}