diff options
| author | Bas Nijholt <basnijholt@gmail.com> | 2025-08-05 11:21:54 -0700 |
|---|---|---|
| committer | Pavol Rusnak <pavol@rusnak.io> | 2025-08-10 12:20:02 +0200 |
| commit | 94f0ca6417f1a2f2fed2b036cd92a99497abb55f (patch) | |
| tree | 0f621f13e3157d98ca57048281b52aefa1969f18 | |
| parent | ollama: 0.10.0 -> 0.11.0 (diff) | |
| download | nixpkgs-94f0ca6417f1a2f2fed2b036cd92a99497abb55f.tar.gz | |
ollama: fix source hash for version 0.11.0
The current hash in package.nix doesn't match the actual v0.11.0
source,
causing build failures with hash mismatch errors.
Update hash from
sha256-fBoSt/chnxnlD6/HsWeMX9TR7Du7RCOmWcqCKamyK7A=
to sha256-po7BxJAj9eOpOaXsLDmw6/1RyjXPtXza0YUv0pVojZ0=
This follows nixpkgs conventions:
- PR title: package: brief description
- Commit message: explains what and why, with specific details
about the hash change
(cherry picked from commit 49a95e445e8f29b6f60cfca13b7d86d809b71264)
| -rw-r--r-- | pkgs/by-name/ol/ollama/package.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/by-name/ol/ollama/package.nix b/pkgs/by-name/ol/ollama/package.nix index 2b0cdf39d8be..a0c2d6afabb7 100644 --- a/pkgs/by-name/ol/ollama/package.nix +++ b/pkgs/by-name/ol/ollama/package.nix @@ -122,7 +122,7 @@ goBuild (finalAttrs: { owner = "ollama"; repo = "ollama"; tag = "v${finalAttrs.version}"; - hash = "sha256-fBoSt/chnxnlD6/HsWeMX9TR7Du7RCOmWcqCKamyK7A="; + hash = "sha256-po7BxJAj9eOpOaXsLDmw6/1RyjXPtXza0YUv0pVojZ0="; fetchSubmodules = true; }; |
