Add Weston 1.0.2.

Currently doesn't build. I have to further investigate but there seems to be a
missing file from the tarball.
This commit is contained in:
Carles Pagès 2012-12-02 12:42:55 +01:00
parent 660c96b6df
commit b60d016a0a
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv, fetchurl, pkgconfig, wayland, mesa90x, libxkbcommon, pixman
, cairo, libxcb, libXcursor, x11, udev, libdrm2_4_39, mtdev
, libjpeg, pam }:
let version = "1.0.2"; in
stdenv.mkDerivation rec {
name = "weston-${version}";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "1496l8hmpxx7pivdpp14pv0hi30q18dmnaxz471v9jiqsnnrr11k";
};
buildInputs = [ pkgconfig wayland mesa90x libxkbcommon pixman
cairo libxcb libXcursor x11 udev libdrm2_4_39 mtdev
libjpeg pam ];
meta = {
description = "Reference implementation of a Wayland compositor";
homepage = http://wayland.freedesktop.org/;
license = stdenv.lib.licenses.mit;
};
}

View File

@ -7969,6 +7969,13 @@ let
weechat = callPackage ../applications/networking/irc/weechat { };
weston = callPackage ../applications/window-managers/weston {
cairo = cairo.override {
xcbSupport = true;
glSupport = true;
};
};
wings = callPackage ../applications/graphics/wings { };
wmname = callPackage ../applications/misc/wmname { };