-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ollama: 0.5.1 -> 0.5.4 #365718
ollama: 0.5.1 -> 0.5.4 #365718
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,9 @@ | |
cudaPackages, | ||
darwin, | ||
autoAddDriverRunpath, | ||
versionCheckHook, | ||
|
||
# passthru | ||
nixosTests, | ||
testers, | ||
ollama, | ||
|
@@ -41,13 +43,13 @@ assert builtins.elem acceleration [ | |
let | ||
pname = "ollama"; | ||
# don't forget to invalidate all hashes each update | ||
version = "0.5.1"; | ||
version = "0.5.4"; | ||
|
||
src = fetchFromGitHub { | ||
owner = "ollama"; | ||
repo = "ollama"; | ||
rev = "v${version}"; | ||
hash = "sha256-llsK/rMK1jf2uneqgon9gqtZcbC9PuCDxoYfC7Ta6PY="; | ||
tag = "v${version}"; | ||
hash = "sha256-JyP7A1+u9Vs6ynOKDwun1qLBsjN+CVHIv39Hh2TYa2U="; | ||
fetchSubmodules = true; | ||
}; | ||
|
||
|
@@ -169,14 +171,10 @@ goBuild { | |
++ lib.optionals enableCuda cudaLibs | ||
++ lib.optionals stdenv.hostPlatform.isDarwin metalFrameworks; | ||
|
||
patches = [ | ||
# ollama's build script is unable to find hipcc | ||
./rocm.patch | ||
]; | ||
|
||
# replace inaccurate version number with actual release version | ||
postPatch = '' | ||
# replace inaccurate version number with actual release version | ||
substituteInPlace version/version.go --replace-fail 0.0.0 '${version}' | ||
substituteInPlace version/version.go \ | ||
--replace-fail 0.0.0 '${version}' | ||
''; | ||
|
||
overrideModAttrs = ( | ||
|
@@ -186,25 +184,28 @@ goBuild { | |
} | ||
); | ||
|
||
preBuild = '' | ||
preBuild = | ||
let | ||
dist_cmd = | ||
if cudaRequested then | ||
"dist_cuda_v${cudaMajorVersion}" | ||
else if rocmRequested then | ||
"dist_rocm" | ||
else | ||
"dist"; | ||
in | ||
# build llama.cpp libraries for ollama | ||
make -j $NIX_BUILD_CORES | ||
''; | ||
|
||
postInstall = lib.optionalString stdenv.hostPlatform.isLinux '' | ||
# copy libggml_*.so and runners into lib | ||
# https://github.com/ollama/ollama/blob/v0.4.4/llama/make/gpu.make#L90 | ||
mkdir -p $out/lib | ||
cp -r dist/*/lib/* $out/lib/ | ||
''; | ||
Comment on lines
-194
to
-199
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this might be the problem? I'm going to some messing around There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Got it working locally! PR coming shortly There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes. thanks! |
||
'' | ||
make ${dist_cmd} -j $NIX_BUILD_CORES | ||
''; | ||
|
||
postFixup = | ||
# the app doesn't appear functional at the moment, so hide it | ||
'' | ||
# the app doesn't appear functional at the moment, so hide it | ||
mv "$out/bin/app" "$out/bin/.ollama-app" | ||
'' | ||
# expose runtime libraries necessary to use the gpu | ||
+ lib.optionalString (enableRocm || enableCuda) '' | ||
# expose runtime libraries necessary to use the gpu | ||
wrapProgram "$out/bin/ollama" ${wrapperArgs} | ||
''; | ||
|
||
|
@@ -215,6 +216,14 @@ goBuild { | |
"-X=github.com/ollama/ollama/server.mode=release" | ||
]; | ||
|
||
__darwinAllowLocalNetworking = true; | ||
|
||
nativeInstallCheck = [ | ||
versionCheckHook | ||
]; | ||
versionCheckProgramArg = [ "--version" ]; | ||
doInstallCheck = true; | ||
|
||
passthru = { | ||
tests = | ||
{ | ||
|
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why was this removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
upstream reorganized the make files
I'm not sure if we need to make a new patch yet as I got another error
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seemed like this patch was now unneeded... I could be wrong though.