From: Ben Siraphob Date: Wed, 22 Mar 2023 05:37:02 +0000 (-0500) Subject: Fix Nix build X-Git-Tag: gguf-v0.4.0~1142 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=a18c19259a3cb9dec332d613e8f15704f678a468;p=pkg%2Fggml%2Fsources%2Fllama.cpp Fix Nix build --- diff --git a/flake.nix b/flake.nix index da4bd7ba..4c2717e0 100644 --- a/flake.nix +++ b/flake.nix @@ -28,8 +28,8 @@ ]; installPhase = '' mkdir -p $out/bin - mv llama $out/bin/llama - mv quantize $out/bin/quantize + mv bin/main $out/bin/llama + mv bin/quantize $out/bin/quantize 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