From 19dc5d7b4fb6b3c5c751d798d0db6f41ff559216 Mon Sep 17 00:00:00 2001 From: Nikkuss Date: Sun, 28 Sep 2025 12:00:35 +0400 Subject: [PATCH] helium-browser: replace stdenv with llvmstdenv --- pkgs/by-name/he/helium-browser/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/he/helium-browser/package.nix b/pkgs/by-name/he/helium-browser/package.nix index 5d41422..6111aee 100644 --- a/pkgs/by-name/he/helium-browser/package.nix +++ b/pkgs/by-name/he/helium-browser/package.nix @@ -16,10 +16,14 @@ coreutils, gnugrep, callPackage, + rustc, }: let upstream-info = (lib.importJSON ./info.json)."ungoogled-chromium"; - unwrapped = callPackage ./unwrapped.nix { inherit helium-patcher-unwrapped stdenv upstream-info; }; + unwrapped = callPackage ./unwrapped.nix { + inherit helium-patcher-unwrapped upstream-info; + stdenv = rustc.llvmPackages.stdenv; + }; helium-patcher-unwrapped = callPackage ./helium-patcher.nix { }; sandboxExecutableName = unwrapped.passthru.sandboxExecutableName; in