mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 12:14:10 +00:00
3da83ed15a
Signed-off-by: Mika Tammi <mika.tammi@unikie.com>
64 lines
2.5 KiB
Nix
64 lines
2.5 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, meson, ninja, pkg-config, python3, wayland-scanner
|
|
, cairo, colord, dbus, lcms2, libGL, libXcursor, libdrm, libevdev, libinput
|
|
, libjpeg, seatd, libxcb, libxkbcommon, mesa, mtdev, pam, udev, wayland
|
|
, wayland-protocols
|
|
, pipewire ? null, pango ? null, libunwind ? null, freerdp ? null, vaapi ? null
|
|
, libva ? null, libwebp ? null, xwayland ? null
|
|
# beware of null defaults, as the parameters *are* supplied by callPackage by default
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "weston";
|
|
version = "11.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/wayland/weston/-/releases/${version}/downloads/weston-${version}.tar.xz";
|
|
sha256 = "078y14ff9wmmbzq314f7bq1bxx0rc12xy4j362n60iamr56qs4x6";
|
|
};
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ meson ninja pkg-config python3 wayland-scanner ];
|
|
buildInputs = [
|
|
cairo colord dbus freerdp lcms2 libGL libXcursor libdrm libevdev libinput
|
|
libjpeg seatd libunwind libva libwebp libxcb libxkbcommon mesa mtdev pam
|
|
pango pipewire udev vaapi wayland wayland-protocols
|
|
];
|
|
|
|
mesonFlags= [
|
|
"-Dbackend-drm-screencast-vaapi=${lib.boolToString (vaapi != null)}"
|
|
"-Dbackend-rdp=${lib.boolToString (freerdp != null)}"
|
|
"-Dxwayland=${lib.boolToString (xwayland != null)}" # Default is true!
|
|
"-Dremoting=false" # TODO
|
|
"-Dpipewire=${lib.boolToString (pipewire != null)}"
|
|
"-Dimage-webp=${lib.boolToString (libwebp != null)}"
|
|
"-Ddemo-clients=false"
|
|
"-Dsimple-clients="
|
|
"-Dtest-junit-xml=false"
|
|
# TODO:
|
|
#"--enable-clients"
|
|
] ++ lib.optionals (xwayland != null) [
|
|
"-Dxwayland-path=${xwayland.out}/bin/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
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|