nixpkgs/pkgs/applications/window-managers/weston/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

85 lines
3.2 KiB
Nix
Raw Normal View History

2022-09-24 10:06:09 +00:00
{ lib, stdenv, fetchurl
2022-09-24 09:54:54 +00:00
, meson, ninja, pkg-config, python3, wayland-scanner
, cairo, dbus, libdrm, libevdev, libinput, libxkbcommon, mesa, seatd, wayland
, wayland-protocols, xcbutilcursor
, demoSupport ? true
2023-05-25 11:24:18 +00:00
, hdrSupport ? true, libdisplay-info
, jpegSupport ? true, libjpeg
, lcmsSupport ? true, lcms2
, pangoSupport ? true, pango
, pipewireSupport ? true, pipewire
, rdpSupport ? true, freerdp
, remotingSupport ? true, gst_all_1
, vaapiSupport ? true, libva
2023-05-25 11:24:18 +00:00
, vncSupport ? true, aml, neatvnc, pam
, webpSupport ? true, libwebp
, xwaylandSupport ? true, libXcursor, xwayland
2014-10-17 21:26:36 +00:00
}:
stdenv.mkDerivation rec {
pname = "weston";
2023-08-07 20:50:54 +00:00
version = "12.0.2";
src = fetchurl {
2023-05-17 15:08:41 +00:00
url = "https://gitlab.freedesktop.org/wayland/weston/-/releases/${version}/downloads/weston-${version}.tar.xz";
2023-08-07 20:50:54 +00:00
hash = "sha256-62hqfPAJkqI7F/GS/KmohzE+ksNG7jXYV1GWmD1la0o=";
};
depsBuildBuild = [ pkg-config ];
2022-09-24 09:54:54 +00:00
nativeBuildInputs = [ meson ninja pkg-config python3 wayland-scanner ];
buildInputs = [
cairo libdrm libevdev libinput libxkbcommon mesa seatd wayland
wayland-protocols
2023-05-25 11:24:18 +00:00
] ++ lib.optional hdrSupport libdisplay-info
++ lib.optional jpegSupport libjpeg
++ lib.optional lcmsSupport lcms2
2023-05-25 11:24:18 +00:00
++ lib.optional pangoSupport pango
++ lib.optional pipewireSupport pipewire
++ lib.optional rdpSupport freerdp
++ lib.optionals remotingSupport [ gst_all_1.gstreamer gst_all_1.gst-plugins-base ]
++ lib.optional vaapiSupport libva
2023-05-25 11:24:18 +00:00
++ lib.optionals vncSupport [ aml neatvnc pam ]
++ lib.optional webpSupport libwebp
2023-05-25 11:24:18 +00:00
++ lib.optionals xwaylandSupport [ libXcursor xcbutilcursor xwayland ];
mesonFlags= [
(lib.mesonBool "backend-drm-screencast-vaapi" vaapiSupport)
2023-05-25 11:24:18 +00:00
(lib.mesonBool "backend-pipewire" pipewireSupport)
(lib.mesonBool "backend-rdp" rdpSupport)
2023-05-25 11:24:18 +00:00
(lib.mesonBool "backend-vnc" vncSupport)
(lib.mesonBool "color-management-lcms" lcmsSupport)
(lib.mesonBool "demo-clients" demoSupport)
(lib.mesonBool "image-jpeg" jpegSupport)
(lib.mesonBool "image-webp" webpSupport)
(lib.mesonBool "pipewire" pipewireSupport)
(lib.mesonBool "remoting" remotingSupport)
(lib.mesonOption "simple-clients" "")
(lib.mesonBool "test-junit-xml" false)
(lib.mesonBool "xwayland" xwaylandSupport)
] ++ lib.optionals xwaylandSupport [
2023-05-27 13:26:40 +00:00
(lib.mesonOption "xwayland-path" (lib.getExe xwayland))
];
passthru.providedSessions = [ "weston" ];
meta = with lib; {
description = "A lightweight and functional Wayland compositor";
longDescription = ''
Weston is the reference implementation of a Wayland compositor, as well
as a useful environment in and of itself.
Out of the box, Weston provides a very basic desktop, or a full-featured
environment for non-desktop uses such as automotive, embedded, in-flight,
industrial, kiosks, set-top boxes and TVs. It also provides a library
allowing other projects to build their own full-featured environments on
top of Weston's core. A small suite of example or demo clients are also
provided.
'';
homepage = "https://gitlab.freedesktop.org/wayland/weston";
license = licenses.mit; # Expat version
2014-10-17 21:26:36 +00:00
platforms = platforms.linux;
2023-09-25 11:45:08 +00:00
mainProgram = "weston";
2023-05-25 11:12:10 +00:00
maintainers = with maintainers; [ primeos qyliss ];
};
}