feat(rofi): use latest version of wayland fork

This commit is contained in:
Moritz Böhme 2023-05-29 12:50:15 +02:00
parent bc8972b581
commit 04d63a1977
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
2 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ inputs, ... }:
{ inputs, lib, ... }:
_: prev:
{
@ -7,4 +7,8 @@ _: prev:
hyprpaper = inputs.hyprpaper.packages.${prev.system}.default;
nil = inputs.nil.packages.${prev.system}.default;
nix-super = inputs.nix-super.packages.${prev.system}.default;
rofi-wayland = prev.rofi-wayland.overrideAttrs (_: {
src = inputs.rofi-wayland;
version = lib.my.mkVersionInput inputs.rofi-wayland;
});
}