diff options
author | Vaxry <[email protected]> | 2024-12-03 18:58:24 +0000 |
---|---|---|
committer | GitHub <[email protected]> | 2024-12-03 18:58:24 +0000 |
commit | 320144ae7288fe23686935ebb235d9fe0c900862 (patch) | |
tree | 351b04e228926f98c12c340284c25450bb1fed4f /.github | |
parent | 92186898c0ca1b3f72922b72c4af1723f0d9b888 (diff) | |
download | Hyprland-320144ae7288fe23686935ebb235d9fe0c900862.tar.gz Hyprland-320144ae7288fe23686935ebb235d9fe0c900862.zip |
core: move colorspace handling to oklab (#8635)
* Meson: add hyprgraphics
* Nix: add hyprgraphics
* CI/setup_base: get hyprgraphics-git
---------
Co-authored-by: Mihai Fufezan <[email protected]>
Diffstat (limited to '.github')
-rw-r--r-- | .github/actions/setup_base/action.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.github/actions/setup_base/action.yml b/.github/actions/setup_base/action.yml index 26660ce6..e22f514e 100644 --- a/.github/actions/setup_base/action.yml +++ b/.github/actions/setup_base/action.yml @@ -33,7 +33,9 @@ runs: libfontenc \ libglvnd \ libinput \ + libjxl \ libliftoff \ + libwebp \ libxcursor \ libxcvt \ libxfont2 \ @@ -69,6 +71,11 @@ runs: cmake --build ./build --config Release --target all -j`nproc 2>/dev/null || getconf NPROCESSORS_CONF` cmake --install build + - name: Get hyprgraphics-git + shell: bash + run: | + git clone https://github.com/hyprwm/hyprgraphics && cd hyprgraphics && cmake -DCMAKE_BUILD_TYPE:STRING=Release -DCMAKE_INSTALL_PREFIX:PATH=/usr -B build && cmake --build build --target hyprgraphics && cmake --install build + - name: Get hyprutils-git shell: bash run: | |