b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
48 lines
1.7 KiB
Nix
48 lines
1.7 KiB
Nix
{ stdenv, fetchurl, pkgconfig, wayland, libGL, mesa_noglu, libxkbcommon, cairo, libxcb
|
|
, libXcursor, xlibsWrapper, udev, libdrm, mtdev, libjpeg, pam, dbus, libinput
|
|
, pango ? null, libunwind ? null, freerdp ? null, vaapi ? null, libva ? null
|
|
, libwebp ? null, xwayland ? null, wayland-protocols
|
|
# beware of null defaults, as the parameters *are* supplied by callPackage by default
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "weston-${version}";
|
|
version = "5.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "1bsc9ry566mpk6fdwkqpvwq2j7m79d9cvh7d3lgf6igsphik98hm";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
wayland libGL mesa_noglu libxkbcommon cairo libxcb libXcursor xlibsWrapper udev libdrm
|
|
mtdev libjpeg pam dbus libinput pango libunwind freerdp vaapi libva
|
|
libwebp wayland-protocols
|
|
];
|
|
|
|
configureFlags = [
|
|
"--enable-x11-compositor"
|
|
"--enable-drm-compositor"
|
|
"--enable-wayland-compositor"
|
|
"--enable-headless-compositor"
|
|
"--enable-fbdev-compositor"
|
|
"--enable-screen-sharing"
|
|
"--enable-clients"
|
|
"--enable-weston-launch"
|
|
"--disable-setuid-install" # prevent install target to chown root weston-launch, which fails
|
|
] ++ stdenv.lib.optional (freerdp != null) "--enable-rdp-compositor"
|
|
++ stdenv.lib.optional (vaapi != null) "--enable-vaapi-recorder"
|
|
++ stdenv.lib.optionals (xwayland != null) [
|
|
"--enable-xwayland"
|
|
"--with-xserver-path=${xwayland.out}/bin/Xwayland"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Reference implementation of a Wayland compositor";
|
|
homepage = https://wayland.freedesktop.org/;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|