nixpkgs-wayland icon indicating copy to clipboard operation
nixpkgs-wayland copied to clipboard

fix: sway/wlroots version strings

Open colemickens opened this issue 3 years ago • 1 comments

colemickens avatar Nov 05 '21 22:11 colemickens

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";
			});
		})
	];
};

bandithedoge avatar Feb 04 '22 09:02 bandithedoge