Skip to content

Commit

Permalink
wlroots-hyprland: remove unnecessary overrideAttrs
Browse files Browse the repository at this point in the history
  • Loading branch information
wineee committed Nov 23, 2023
1 parent e73c6e9 commit ecee842
Showing 1 changed file with 3 additions and 41 deletions.
44 changes: 3 additions & 41 deletions pkgs/applications/window-managers/hyprwm/hyprland/wlroots.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,9 @@
, hyprland
, wlroots
, lib
, libdisplay-info
, libliftoff
, hwdata
, enableNvidiaPatches ? false
}:
let
libdisplay-info-new = libdisplay-info.overrideAttrs (old: {
version = "0.1.1+date=2023-03-02";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "emersion";
repo = old.pname;
rev = "147d6611a64a6ab04611b923e30efacaca6fc678";
sha256 = "sha256-/q79o13Zvu7x02SBGu0W5yQznQ+p7ltZ9L6cMW5t/o4=";
};
});

libliftoff-new = libliftoff.overrideAttrs (old: {
version = "0.5.0-dev";
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "emersion";
repo = old.pname;
rev = "d98ae243280074b0ba44bff92215ae8d785658c0";
sha256 = "sha256-DjwlS8rXE7srs7A8+tHqXyUsFGtucYSeq6X0T/pVOc8=";
};

NIX_CFLAGS_COMPILE = toString [
"-Wno-error=sign-conversion"
];
});
in
wlroots.overrideAttrs
(old: {
version = "0.17.0-dev";
Expand All @@ -51,20 +22,11 @@ wlroots.overrideAttrs
+ "-hyprland"
+ lib.optionalString enableNvidiaPatches "-nvidia";

patches =
(old.patches or [ ])
++ (lib.optionals enableNvidiaPatches [
"${hyprland.src}/nix/patches/wlroots-nvidia.patch"
]);
patches = lib.optionals enableNvidiaPatches [
"${hyprland.src}/nix/patches/wlroots-nvidia.patch"
];

# don't need old.postPatch for hwdata's path in wlroots 0.16
postPatch = lib.optionalString enableNvidiaPatches ''
substituteInPlace render/gles2/renderer.c --replace "glFlush();" "glFinish();"
'';

buildInputs = old.buildInputs ++ [
hwdata
libdisplay-info-new
libliftoff-new
];
})

0 comments on commit ecee842

Please sign in to comment.