From 26595b21a2a4de42032b158891b2a21800b35d8c Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 6 Jun 2024 12:15:40 +0200 Subject: [PATCH] open-webui: 0.2.4 -> 0.2.5 diff: https://github.com/open-webui/open-webui/compare/v0.2.4..v0.2.5 changelog: https://github.com/open-webui/open-webui/releases/tag/v0.2.5 --- pkgs/by-name/op/open-webui/package.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/by-name/op/open-webui/package.nix b/pkgs/by-name/op/open-webui/package.nix index 735c61184146..a1d4e4cafc66 100644 --- a/pkgs/by-name/op/open-webui/package.nix +++ b/pkgs/by-name/op/open-webui/package.nix @@ -7,19 +7,19 @@ }: let pname = "open-webui"; - version = "0.2.4"; + version = "0.2.5"; src = fetchFromGitHub { owner = "open-webui"; repo = "open-webui"; rev = "v${version}"; - hash = "sha256-jWO0mo26C+QTIX5j3ucDk/no+vQnAh7Q6JwB3lLM83k="; + hash = "sha256-BqclBrkFmTUJZuUySyNsQFlfdyENaIhqjn50797zJHY="; }; frontend = buildNpmPackage { inherit pname version src; - npmDepsHash = "sha256-QIgYHZusuq2QD8p8MGsNVhCbz6fR+qP9UuU/kbBkadc="; + npmDepsHash = "sha256-drMUcCUeyPEnaa1fSsfHJfInenyfH7NNJgBFeRsfOuE="; # Disabling `pyodide:fetch` as it downloads packages during `buildPhase` # Until this is solved, running python packages from the browser will not work. @@ -45,7 +45,7 @@ python3.pkgs.buildPythonApplication rec { pyproject = true; # The custom hook tries to run `npm install` in `buildPhase`. - # We don't have to worry, as nodejs depedencies are managed by `frontend` drv. + # We don't have to worry, as node dependencies are managed by `frontend` drv. postPatch = '' substituteInPlace pyproject.toml \ --replace-fail '[tool.hatch.build.hooks.custom]' "" \