chromium{Beta,Dev}: Fix the linking

Linking with ThinLTO (required for CFI) was failing as I forgot use
stdenv from llvmPackages_12 in 166520812e9 (need to refactor that part).
This commit is contained in:
Michael Weiss 2021-04-09 12:04:40 +02:00
parent d5fcfcb3de
commit 5768ccf6fe
No known key found for this signature in database
GPG Key ID: 5BE487C4D4771D83

@ -41,6 +41,7 @@ let
});
} // lib.optionalAttrs (lib.versionAtLeast upstream-info.version "90") {
llvmPackages = llvmPackages_12;
stdenv = llvmPackages_12.stdenv;
});
browser = callPackage ./browser.nix { inherit channel enableWideVine ungoogled; };