wlroots: set default to 0.16

authored by

rewine and committed by
Anderson Torres
caf1c274 91e2ed97

+43 -27
+1 -4
pkgs/applications/window-managers/dwl/default.nix
··· 12 12 , wayland-scanner 13 13 , wayland 14 14 , wayland-protocols 15 - , wlroots_0_16 15 + , wlroots 16 16 , writeText 17 17 , xcbutilwm 18 18 , xwayland ··· 20 20 , conf ? null 21 21 }: 22 22 23 - let 24 - wlroots = wlroots_0_16; 25 - in 26 23 stdenv.mkDerivation (finalAttrs: { 27 24 pname = "dwl"; 28 25 version = "0.4";
+4 -6
pkgs/applications/window-managers/hyprwm/hyprland/wlroots.nix
··· 57 57 "${hyprland.src}/nix/patches/wlroots-nvidia.patch" 58 58 ]); 59 59 60 - postPatch = 61 - (old.postPatch or "") 62 - + ( 63 - lib.optionalString enableNvidiaPatches 64 - ''substituteInPlace render/gles2/renderer.c --replace "glFlush();" "glFinish();"'' 65 - ); 60 + # don't need old.postPatch for hwdata's path in wlroots 0.16 61 + postPatch = lib.optionalString enableNvidiaPatches '' 62 + substituteInPlace render/gles2/renderer.c --replace "glFlush();" "glFinish();" 63 + ''; 66 64 67 65 buildInputs = old.buildInputs ++ [ 68 66 hwdata
+1 -4
pkgs/applications/window-managers/labwc/default.nix
··· 17 17 , wayland-scanner 18 18 , wayland 19 19 , wayland-protocols 20 - , wlroots_0_16 20 + , wlroots 21 21 , xcbutilwm 22 22 , xwayland 23 23 }: 24 24 25 - let 26 - wlroots = wlroots_0_16; 27 - in 28 25 stdenv.mkDerivation (finalAttrs: { 29 26 pname = "labwc"; 30 27 version = "0.6.4";
+1 -1
pkgs/development/libraries/wlroots/default.nix
··· 124 124 ''; 125 125 }; 126 126 127 - wlroots = wlroots_0_15; 127 + wlroots = wlroots_0_16; 128 128 }
+30 -10
pkgs/top-level/all-packages.nix
··· 4785 4785 4786 4786 wlsunset = callPackage ../tools/wayland/wlsunset { }; 4787 4787 4788 - wl-gammactl = callPackage ../tools/wayland/wl-gammactl { }; 4788 + wl-gammactl = callPackage ../tools/wayland/wl-gammactl { 4789 + wlroots = wlroots_0_15; 4790 + }; 4789 4791 4790 4792 wluma = callPackage ../tools/wayland/wluma { }; 4791 4793 ··· 5405 5407 5406 5408 flashfocus = callPackage ../misc/flashfocus { }; 5407 5409 5408 - qt-video-wlr = libsForQt5.callPackage ../applications/misc/qt-video-wlr { }; 5410 + qt-video-wlr = libsForQt5.callPackage ../applications/misc/qt-video-wlr { 5411 + wlroots = wlroots_0_15; 5412 + }; 5409 5413 5410 5414 fwup = callPackage ../tools/misc/fwup { 5411 5415 inherit (darwin.apple_sdk.frameworks) DiskArbitration; ··· 5641 5645 5642 5646 hyprpaper = callPackage ../applications/window-managers/hyprwm/hyprpaper { }; 5643 5647 5644 - hyprpicker = callPackage ../applications/window-managers/hyprwm/hyprpicker { }; 5648 + hyprpicker = callPackage ../applications/window-managers/hyprwm/hyprpicker { 5649 + wlroots = wlroots_0_15; 5650 + }; 5645 5651 5646 5652 hysteria = callPackage ../tools/networking/hysteria { }; 5647 5653 ··· 11920 11926 11921 11927 pfstools = libsForQt5.callPackage ../tools/graphics/pfstools { }; 11922 11928 11923 - phoc = callPackage ../applications/misc/phoc { }; 11929 + phoc = callPackage ../applications/misc/phoc { 11930 + wlroots = wlroots_0_15; 11931 + }; 11924 11932 11925 11933 phockup = callPackage ../applications/misc/phockup { }; 11926 11934 ··· 31377 31385 31378 31386 dyff = callPackage ../development/tools/dyff { }; 31379 31387 31380 - dwl = callPackage ../applications/window-managers/dwl { }; 31388 + dwl = callPackage ../applications/window-managers/dwl { 31389 + wlroots = wlroots_0_16; 31390 + }; 31381 31391 31382 31392 dwm = callPackage ../applications/window-managers/dwm { 31383 31393 # dwm is configured entirely through source modification. Allow users to ··· 32802 32812 32803 32813 rootbar = callPackage ../applications/misc/rootbar { }; 32804 32814 32805 - waybar = callPackage ../applications/misc/waybar { }; 32815 + waybar = callPackage ../applications/misc/waybar { 32816 + wlroots = wlroots_0_15; 32817 + }; 32806 32818 32807 32819 waycorner = callPackage ../applications/misc/waycorner { }; 32808 32820 ··· 32814 32826 32815 32827 wbg = callPackage ../applications/misc/wbg { }; 32816 32828 32817 - hikari = callPackage ../applications/window-managers/hikari { }; 32829 + hikari = callPackage ../applications/window-managers/hikari { 32830 + wlroots = wlroots_0_15; 32831 + }; 32818 32832 32819 32833 i3 = callPackage ../applications/window-managers/i3 { 32820 32834 xcb-util-cursor = if stdenv.isDarwin then xcb-util-cursor-HEAD else xcb-util-cursor; ··· 32880 32894 32881 32895 kitti3 = python3.pkgs.callPackage ../applications/window-managers/i3/kitti3.nix { }; 32882 32896 32883 - waybox = callPackage ../applications/window-managers/waybox { }; 32897 + waybox = callPackage ../applications/window-managers/waybox { 32898 + wlroots = wlroots_0_15; 32899 + }; 32884 32900 32885 32901 workstyle = callPackage ../applications/window-managers/i3/workstyle.nix { }; 32886 32902 ··· 33427 33443 33428 33444 lame = callPackage ../development/libraries/lame { }; 33429 33445 33430 - labwc = callPackage ../applications/window-managers/labwc { }; 33446 + labwc = callPackage ../applications/window-managers/labwc { 33447 + wlroots = wlroots_0_16; 33448 + }; 33431 33449 33432 33450 larswm = callPackage ../applications/window-managers/larswm { }; 33433 33451 ··· 34089 34107 wrapMpv = callPackage ../applications/video/mpv/wrapper.nix { }; 34090 34108 mpv = wrapMpv mpv-unwrapped { }; 34091 34109 34092 - mpvpaper = callPackage ../tools/wayland/mpvpaper { }; 34110 + mpvpaper = callPackage ../tools/wayland/mpvpaper { 34111 + wlroots = wlroots_0_15; 34112 + }; 34093 34113 34094 34114 mpvScripts = import ../applications/video/mpv/scripts { inherit lib callPackage config; }; 34095 34115
+6 -2
pkgs/top-level/python-packages.nix
··· 10766 10766 10767 10767 pywizlight = callPackage ../development/python-modules/pywizlight { }; 10768 10768 10769 - pywlroots = callPackage ../development/python-modules/pywlroots { }; 10769 + pywlroots = callPackage ../development/python-modules/pywlroots { 10770 + wlroots = pkgs.wlroots_0_15; 10771 + }; 10770 10772 10771 10773 pyws66i = callPackage ../development/python-modules/pyws66i { }; 10772 10774 ··· 10880 10882 10881 10883 qtconsole = callPackage ../development/python-modules/qtconsole { }; 10882 10884 10883 - qtile = callPackage ../development/python-modules/qtile { }; 10885 + qtile = callPackage ../development/python-modules/qtile { 10886 + wlroots = pkgs.wlroots_0_15; 10887 + }; 10884 10888 qtile-extras = callPackage ../development/python-modules/qtile-extras { }; 10885 10889 10886 10890 qtpy = callPackage ../development/python-modules/qtpy { };