nix-community / nixpkgs-wayland

Automated, pre-built packages for Wayland (sway/wlroots) tools for NixOS. [maintainers=@colemickens, @Artturin]
510 stars 47 forks source link

fix: sway/wlroots version strings #313

Open colemickens opened 2 years ago

bandithedoge commented 2 years ago

This still needs to be fixed as it can break other packages like river which refuses to build with wlroots <0.15. You can use an overlay as a temporary workaround like so:

nixpkgs = {
    overlays = [
        (self: super: {
            wlroots = super.wlroots.overrideAttrs (_: {
                version = "0.15";
            });
        })
    ];
};