504525a148
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
19 lines
432 B
Nix
19 lines
432 B
Nix
{ fetchFromGitLab
|
|
, wlroots
|
|
}:
|
|
wlroots.overrideAttrs
|
|
(old: {
|
|
version = "0.18.0-dev";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.freedesktop.org";
|
|
owner = "wlroots";
|
|
repo = "wlroots";
|
|
rev = "5d639394f3e83b01596dcd166a44a9a1a2583350";
|
|
hash = "sha256-7kvyoA91etzVEl9mkA/EJfB6z/PltxX7Xc4gcr7/xlo=";
|
|
};
|
|
|
|
patches = [ ]; # don't inherit old.patches
|
|
|
|
pname = "${old.pname}-hyprland";
|
|
})
|