2015-06-01 20:01:53 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig
|
2016-04-08 21:11:08 +01:00
|
|
|
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, libxml2
|
2015-02-19 17:57:13 +00:00
|
|
|
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
|
2015-02-19 02:31:19 +00:00
|
|
|
}:
|
2012-12-02 10:20:07 +00:00
|
|
|
|
2015-02-19 02:31:19 +00:00
|
|
|
# Require the optional to be enabled until upstream fixes or removes the configure flag
|
2015-02-19 17:57:13 +00:00
|
|
|
assert expat != null;
|
2015-02-19 02:31:19 +00:00
|
|
|
|
2012-12-02 10:20:07 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "wayland-${version}";
|
2016-06-01 09:27:34 +01:00
|
|
|
version = "1.11.0";
|
2012-12-02 10:20:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
|
2016-06-01 09:27:34 +01:00
|
|
|
sha256 = "1c0d5ivy9n44hykvw2ggrvqrnn7naw3wg11vbvgwzgi8g5gr4h4m";
|
2012-12-02 10:20:07 +00:00
|
|
|
};
|
|
|
|
|
2015-05-13 17:16:07 +01:00
|
|
|
configureFlags = "--with-scanner --disable-documentation";
|
2015-02-19 02:31:19 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
2016-04-08 21:11:08 +01:00
|
|
|
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ];
|
2012-12-02 10:20:07 +00:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Reference implementation of the wayland protocol";
|
2015-02-19 02:31:19 +00:00
|
|
|
homepage = http://wayland.freedesktop.org/;
|
2015-06-01 20:01:53 +01:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ codyopel wkennington ];
|
2012-12-02 10:20:07 +00:00
|
|
|
};
|
2015-02-19 17:57:13 +00:00
|
|
|
|
|
|
|
passthru.version = version;
|
2012-12-02 10:20:07 +00:00
|
|
|
}
|