125 lines
1.9 KiB
Nix
125 lines
1.9 KiB
Nix
{
|
|
inputs,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
with pkgs;
|
|
[
|
|
(pkgs.stdenv.mkDerivation {
|
|
name = "ccline";
|
|
src = pkgs.fetchurl {
|
|
url = "https://github.com/Haleclipse/CCometixLine/releases/download/v1.0.8/ccline-linux-x64.tar.gz";
|
|
hash = "sha256-Joe3Dd6uSMGi66QT6xr2oY/Tz8rA5RuKa6ckBVJIzI0=";
|
|
};
|
|
|
|
unpackPhase = ''
|
|
tar xzf $src
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp ccline $out/bin/
|
|
chmod +x $out/bin/ccline
|
|
'';
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "CCometixLine Linux x64 CLI (Claude Code statusline)";
|
|
homepage = "https://github.com/Haleclipse/CCometixLine";
|
|
license = licenses.mit;
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
})
|
|
|
|
act
|
|
age
|
|
aider-chat
|
|
argocd
|
|
azure-cli
|
|
bat
|
|
biome
|
|
(config.lib.nixGL.wrap bruno)
|
|
chromium
|
|
clang
|
|
claude-code
|
|
(config.lib.nixGL.wrap code-cursor)
|
|
curl
|
|
dconf2nix
|
|
dive
|
|
emmet-language-server
|
|
eslint_d
|
|
flameshot
|
|
fluxcd
|
|
fzf
|
|
fzf-git-sh
|
|
git-machete
|
|
github-copilot-cli
|
|
glab
|
|
go
|
|
hadolint
|
|
hello
|
|
helm-ls
|
|
htop
|
|
input-leap
|
|
jira-cli-go
|
|
jq
|
|
k3d
|
|
(config.lib.nixGL.wrap kitty)
|
|
kubectl
|
|
kubernetes
|
|
kubernetes-helm
|
|
kustomize
|
|
lua
|
|
lua-language-server
|
|
minikube
|
|
ncspot
|
|
nil
|
|
nixd
|
|
nixfmt-rfc-style
|
|
# nodejs
|
|
nodejs_24
|
|
nvimpager
|
|
(config.lib.nixGL.wrap obsidian)
|
|
pavucontrol
|
|
# pgadmin4
|
|
prettierd
|
|
responder
|
|
ripgrep
|
|
rust-analyzer
|
|
rustlings
|
|
shellcheck
|
|
(config.lib.nixGL.wrap signal-desktop)
|
|
silver-searcher
|
|
sleuthkit
|
|
spotify
|
|
starship
|
|
stylua
|
|
taskopen
|
|
taskwarrior3
|
|
(config.lib.nixGL.wrap teams-for-linux)
|
|
opentofu
|
|
sops
|
|
tldr
|
|
tmux
|
|
tree
|
|
tree-sitter
|
|
tsx
|
|
upbound
|
|
vault-bin
|
|
(config.lib.nixGL.wrap vscode)
|
|
vscode-langservers-extracted
|
|
vtsls
|
|
yaml-language-server
|
|
xclip
|
|
xmage
|
|
yamllint
|
|
yarn
|
|
(python311.withPackages (ppkgs: [
|
|
ppkgs.plyer
|
|
ppkgs.dbus-python
|
|
]))
|
|
# flakes
|
|
inputs.nvim.packages.x86_64-linux.nvim
|
|
]
|