From: Pavol Rusnak Date: Tue, 25 Apr 2023 21:19:57 +0000 (+0200) Subject: nix: use convert.py instead of legacy wrapper convert-pth-to-ggml.py (#981) X-Git-Tag: gguf-v0.4.0~869 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=bb98e77be704584fb40b0400394b4c16ae75f8e2;p=pkg%2Fggml%2Fsources%2Fllama.cpp nix: use convert.py instead of legacy wrapper convert-pth-to-ggml.py (#981) --- diff --git a/flake.nix b/flake.nix index 5363052b..2c9edbb6 100644 --- a/flake.nix +++ b/flake.nix @@ -30,9 +30,9 @@ mv bin/* $out/bin/ mv $out/bin/main $out/bin/llama - echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml - cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml - chmod +x $out/bin/convert-pth-to-ggml + echo "#!${llama-python}/bin/python" > $out/bin/convert.py + cat ${./convert.py} >> $out/bin/convert.py + chmod +x $out/bin/convert.py ''; meta.mainProgram = "llama"; };