mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-06 17:48:37 +00:00
Flake/devshell: Port skia skcms fix from local vcpkg overlay
See #4d7b717
This commit is contained in:
parent
61fcccb104
commit
af3d46dc06
Notes:
github-actions[bot]
2024-12-18 15:16:37 +00:00
Author: https://github.com/ttrssreal
Commit: af3d46dc06
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2918
1 changed files with 9 additions and 1 deletions
10
shell.nix
10
shell.nix
|
@ -4,7 +4,15 @@
|
|||
|
||||
pkgs.mkShell {
|
||||
inputsFrom = [
|
||||
pkgs.ladybird
|
||||
(pkgs.ladybird.override (prev: {
|
||||
# Apply fix expanding skia's public api
|
||||
# See #4d7b717
|
||||
skia = prev.skia.overrideAttrs (prev: {
|
||||
gnFlags = prev.gnFlags ++ [
|
||||
"extra_cflags+=[\"-DSKCMS_API=__attribute__((visibility(\\\"default\\\")))\"]"
|
||||
];
|
||||
});
|
||||
}))
|
||||
];
|
||||
|
||||
packages = with pkgs.qt6Packages; [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue