packages: repopack -> repomix

This commit is contained in:
ooks-io 2025-01-17 23:05:05 +11:00
parent 887507a022
commit f10661f33f
3 changed files with 11 additions and 19 deletions

View file

@ -0,0 +1,27 @@
{
lib,
buildNpmPackage,
fetchFromGitHub,
}:
buildNpmPackage rec {
pname = "repomix";
version = "0.2.20";
src = fetchFromGitHub {
owner = "yamadashy";
repo = "repomix";
rev = "v${version}";
hash = "sha256-ZfkaopnftD6wJ0KAScE1q2u3/jM36QVwx6CgPiS1nWY";
};
npmDepsHash = "sha256-/ocQ5vp67w5U6Gx+1LgJzcObsvKeTVN9BOEKXSb6oU0";
meta = {
description = ''
A powerful tool that packs your entire repository into a
single, AI-friendly file.
'';
homepage = "https://github.com/yamadashy/repomix";
mainProgram = "repomix";
};
}