2015-06-01 21:01:53 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig
|
2018-11-26 08:12:45 +01:00
|
|
|
, libffi, libxml2, wayland
|
2015-02-19 18:57:13 +01:00
|
|
|
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
|
2015-02-19 03:31:19 +01:00
|
|
|
}:
|
2012-12-02 11:20:07 +01:00
|
|
|
|
2015-02-19 03:31:19 +01:00
|
|
|
# Require the optional to be enabled until upstream fixes or removes the configure flag
|
2015-02-19 18:57:13 +01:00
|
|
|
assert expat != null;
|
2015-02-19 03:31:19 +01:00
|
|
|
|
2012-12-02 11:20:07 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-03-21 04:09:21 +01:00
|
|
|
pname = "wayland";
|
|
|
|
version = "1.17.0";
|
2012-12-02 11:20:07 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-03-21 04:09:21 +01:00
|
|
|
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
|
|
|
sha256 = "194ibzwpdcn6fvk4xngr4bf5axpciwg2bj82fdvz88kfmjw13akj";
|
2012-12-02 11:20:07 +01:00
|
|
|
};
|
|
|
|
|
2019-01-31 15:47:51 +01:00
|
|
|
separateDebugInfo = true;
|
|
|
|
|
2018-11-26 08:12:45 +01:00
|
|
|
configureFlags = [
|
|
|
|
"--disable-documentation"
|
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"--with-host-scanner"
|
|
|
|
];
|
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
pkgconfig
|
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
# for wayland-scanner during build
|
|
|
|
wayland
|
|
|
|
];
|
2015-02-19 03:31:19 +01:00
|
|
|
|
2016-04-08 22:11:08 +02:00
|
|
|
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ];
|
2012-12-02 11:20:07 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Reference implementation of the wayland protocol";
|
2018-01-05 20:42:46 +01:00
|
|
|
homepage = https://wayland.freedesktop.org/;
|
2015-06-01 21:01:53 +02:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.linux;
|
2019-01-26 11:01:09 +01:00
|
|
|
maintainers = with lib.maintainers; [ codyopel ];
|
2012-12-02 11:20:07 +01:00
|
|
|
};
|
2015-02-19 18:57:13 +01:00
|
|
|
|
|
|
|
passthru.version = version;
|
2012-12-02 11:20:07 +01:00
|
|
|
}
|