packages: repopack -> repomix
This commit is contained in:
parent
887507a022
commit
f10661f33f
3 changed files with 11 additions and 19 deletions
|
|
@ -15,32 +15,26 @@ in {
|
||||||
inherit
|
inherit
|
||||||
(pkgs)
|
(pkgs)
|
||||||
bc # Calculator
|
bc # Calculator
|
||||||
|
|
||||||
# file utility
|
# file utility
|
||||||
|
|
||||||
duf
|
duf
|
||||||
du-dust
|
du-dust
|
||||||
fd
|
fd
|
||||||
ripgrep
|
ripgrep
|
||||||
# archive
|
# archive
|
||||||
|
|
||||||
zip
|
zip
|
||||||
unzip
|
unzip
|
||||||
unrar
|
unrar
|
||||||
# file transfer
|
# file transfer
|
||||||
|
|
||||||
rsync
|
rsync
|
||||||
wget
|
wget
|
||||||
httpie # Better curl
|
httpie # Better curl
|
||||||
|
|
||||||
# resource manager
|
# resource manager
|
||||||
|
|
||||||
powertop
|
powertop
|
||||||
#shell scripting
|
#shell scripting
|
||||||
|
|
||||||
gum
|
gum
|
||||||
# audio ctrl
|
# audio ctrl
|
||||||
|
|
||||||
pamixer
|
pamixer
|
||||||
diffsitter # Better diff
|
diffsitter # Better diff
|
||||||
jq # JSON pretty printer and manipulator
|
jq # JSON pretty printer and manipulator
|
||||||
|
|
@ -49,15 +43,13 @@ in {
|
||||||
killall
|
killall
|
||||||
acpi
|
acpi
|
||||||
# Notifications
|
# Notifications
|
||||||
|
|
||||||
libnotify
|
libnotify
|
||||||
# Nix tooling
|
# Nix tooling
|
||||||
|
|
||||||
alejandra
|
alejandra
|
||||||
;
|
;
|
||||||
|
|
||||||
#AI
|
#AI
|
||||||
inherit (self'.packages) repopack;
|
inherit (self'.packages) repomix;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
packages = {
|
packages = {
|
||||||
repopack = callPackage ./repopack {};
|
repomix = callPackage ./repomix {};
|
||||||
live-buds-cli = callPackage ./live-buds-cli {};
|
live-buds-cli = callPackage ./live-buds-cli {};
|
||||||
website = callPackage ./website {};
|
website = callPackage ./website {};
|
||||||
caddy-with-cloudflare = callPackage ./caddy-with-cloudflare {};
|
caddy-with-cloudflare = callPackage ./caddy-with-cloudflare {};
|
||||||
|
|
|
||||||
|
|
@ -4,24 +4,24 @@
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
}:
|
}:
|
||||||
buildNpmPackage rec {
|
buildNpmPackage rec {
|
||||||
pname = "repopack";
|
pname = "repomix";
|
||||||
version = "0.1.24";
|
version = "0.2.20";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "yamadashy";
|
owner = "yamadashy";
|
||||||
repo = "repopack";
|
repo = "repomix";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
hash = "sha256-+UcpfxMcG47j4fSOAXBvNgwKy0nSC6UKJvNc5G8c6U0=";
|
hash = "sha256-ZfkaopnftD6wJ0KAScE1q2u3/jM36QVwx6CgPiS1nWY";
|
||||||
};
|
};
|
||||||
|
|
||||||
npmDepsHash = "sha256-Jyp48JNRuqxGSNi6eLrnOkF4Z+OResbtfbTYHg1S1mU=";
|
npmDepsHash = "sha256-/ocQ5vp67w5U6Gx+1LgJzcObsvKeTVN9BOEKXSb6oU0";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = ''
|
description = ''
|
||||||
A powerful tool that packs your entire repository into a
|
A powerful tool that packs your entire repository into a
|
||||||
single, AI-friendly file.
|
single, AI-friendly file.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/yamadashy/repopack";
|
homepage = "https://github.com/yamadashy/repomix";
|
||||||
mainProgram = "repopack";
|
mainProgram = "repomix";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue