Unverified Commit 9711ace5 authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

vaultwarden.webvault: 2026.3.1+0 -> 2026.4.1+0

parent 2e733c9a
Loading
Loading
Loading
Loading
+12 −3
Original line number Diff line number Diff line
@@ -10,16 +10,25 @@

buildNpmPackage rec {
  pname = "vaultwarden-webvault";
  version = "2026.3.1+0";
  version = "2026.4.1+0";

  src = fetchFromGitHub {
    owner = "vaultwarden";
    repo = "vw_web_builds";
    tag = "v${version}";
    hash = "sha256-nUhSoqf655eOs+rKqAZB0XzPD6ePL6CIxVAnB5dmJAs=";
    hash = "sha256-CIKhdCQwx1zS8rkOtZoG9WDxtweSmrCNL6HfZXi+mM8=";
  };

  npmDepsHash = "sha256-dlYN2aiv6XbDXQVstfI6XIe+X5Q1lqs62eNalGTGx7k=";
  # Upstream lockfile is out of sync for @napi-rs/cli (spec 3.5.1, resolved
  # 3.2.0), which makes offline `npm ci` hit the registry. The desktop
  # workspace is unused here. https://github.com/bitwarden/clients/pull/20480
  postPatch = ''
    substituteInPlace package-lock.json \
      --replace-fail '"@napi-rs/cli": "3.5.1"' '"@napi-rs/cli": "3.2.0"'
  '';

  npmDepsFetcherVersion = 2;
  npmDepsHash = "sha256-NBhII5HySIkv0bCeWjH6MknX5NMp11Gwno7RnfCKgjc=";

  nativeBuildInputs = [
    python3