Skip to content

Commit

Permalink
fix: package cleanup & fix gch script
Browse files Browse the repository at this point in the history
  • Loading branch information
tiborpilz authored and Tibor Pilz committed Dec 19, 2023
1 parent 346d4d8 commit 609e6c5
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 1,709 deletions.
14 changes: 0 additions & 14 deletions packages/python/chatgpt-wrapper/chatgpt-wrapper-requirements.txt

This file was deleted.

14 changes: 0 additions & 14 deletions packages/python/chatgpt-wrapper/poetry-git-overlay.nix

This file was deleted.

1,602 changes: 0 additions & 1,602 deletions packages/python/chatgpt-wrapper/poetry.lock

This file was deleted.

16 changes: 0 additions & 16 deletions packages/python/chatgpt-wrapper/pyproject.toml

This file was deleted.

38 changes: 0 additions & 38 deletions packages/python/default.nix

This file was deleted.

24 changes: 0 additions & 24 deletions packages/python/llm-workflow-engine/default.nix

This file was deleted.

4 changes: 3 additions & 1 deletion packages/scripts/git-utils/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@ with pkgs;
stdenv.mkDerivation {
name = "git-utils";
phases = "installPhase";
src = "./";
src = ./.;
buildInputs = [ git fzf ];
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
cp $src/gch.sh $out/bin/gch
wrapProgram $out/bin/gch \
--prefix PATH : ${lib.makeBinPath [ git fzf ]}
'';
}

0 comments on commit 609e6c5

Please sign in to comment.