wayfire: init at 0.6.0

+31
+30
pkgs/applications/window-managers/wayfire/default.nix
··· 1 + { stdenv, lib, fetchurl, meson, ninja, pkg-config, git 2 + , cairo, libdrm, libexecinfo, libinput, libjpeg, libxkbcommon, wayland 3 + , wayland-protocols, wf-config, wlroots 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "wayfire"; 8 + version = "0.6.0"; 9 + 10 + src = fetchurl { 11 + url = "https://github.com/WayfireWM/wayfire/releases/download/${version}/wayfire-${version}.tar.xz"; 12 + sha256 = "0wc5szslgf8d4r4dlbfgc5v49j2ziaa8fycmknq4p0vl67mh7acq"; 13 + }; 14 + 15 + nativeBuildInputs = [ meson ninja pkg-config wayland ]; 16 + buildInputs = [ 17 + cairo libdrm libexecinfo libinput libjpeg libxkbcommon wayland 18 + wayland-protocols wf-config wlroots 19 + ]; 20 + 21 + mesonFlags = [ "--sysconfdir" "/etc" ]; 22 + 23 + meta = with lib; { 24 + homepage = "https://wayfire.org/"; 25 + description = "3D wayland compositor"; 26 + license = licenses.mit; 27 + maintainers = with maintainers; [ qyliss wucke13 ]; 28 + platforms = platforms.unix; 29 + }; 30 + }
+1
pkgs/top-level/all-packages.nix
··· 24755 24755 way-cooler = throw ("way-cooler is abandoned by its author: " + 24756 24756 "https://way-cooler.org/blog/2020/01/09/way-cooler-post-mortem.html"); 24757 24757 24758 + wayfire = callPackage ../applications/window-managers/wayfire { }; 24758 24759 wf-config = callPackage ../applications/window-managers/wayfire/wf-config.nix { }; 24759 24760 24760 24761 waypipe = callPackage ../applications/networking/remote/waypipe { };