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

49 lines
1.7 KiB
Nix
Raw Normal View History

2014-10-17 23:26:36 +02:00
{ stdenv, fetchurl, pkgconfig, wayland, mesa, libxkbcommon, cairo, libxcb
, libXcursor, xlibsWrapper, udev, libdrm, mtdev, libjpeg, pam, dbus, libinput
2014-10-17 23:26:36 +02:00
, pango ? null, libunwind ? null, freerdp ? null, vaapi ? null, libva ? null
2016-04-08 22:13:14 +02:00
, libwebp ? null, xwayland ? null, wayland-protocols
# beware of null defaults, as the parameters *are* supplied by callPackage by default
2014-10-17 23:26:36 +02:00
}:
stdenv.mkDerivation rec {
name = "weston-${version}";
2016-09-21 11:11:47 +02:00
version = "1.12.0";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
2016-09-21 11:11:47 +02:00
sha256 = "ac7ac2a32e3b9f50131fccded5d2326bd36b2226712d90b61999118a09af5033";
};
2015-09-22 23:30:05 +02:00
nativeBuildInputs = [ pkgconfig ];
buildInputs = [
wayland mesa libxkbcommon cairo libxcb libXcursor xlibsWrapper udev libdrm
mtdev libjpeg pam dbus libinput pango libunwind freerdp vaapi libva
2016-04-08 22:13:14 +02:00
libwebp wayland-protocols
];
configureFlags = [
2014-10-17 23:26:36 +02:00
"--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
2014-10-17 23:26:36 +02:00
] ++ stdenv.lib.optional (freerdp != null) "--enable-rdp-compositor"
2014-11-20 12:40:37 +01:00
++ stdenv.lib.optional (vaapi != null) "--enabe-vaapi-recorder"
++ stdenv.lib.optionals (xwayland != null) [
"--enable-xwayland"
"--with-xserver-path=${xwayland.out}/bin/Xwayland"
];
2014-10-17 23:26:36 +02:00
meta = with stdenv.lib; {
description = "Reference implementation of a Wayland compositor";
homepage = http://wayland.freedesktop.org/;
2014-10-17 23:26:36 +02:00
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
};
}