nixpkgs/pkgs/development/libraries/wayland/default.nix

68 lines
2.3 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, meson, pkgconfig, ninja
2018-11-26 07:12:45 +00:00
, libffi, libxml2, wayland
2015-02-19 17:57:13 +00:00
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
, withDocumentation ? false, graphviz-nox, doxygen, libxslt, xmlto, python3
, docbook_xsl, docbook_xml_dtd_45, docbook_xml_dtd_42
}:
2012-12-02 10:20:07 +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;
let
isCross = stdenv.buildPlatform != stdenv.hostPlatform;
in stdenv.mkDerivation rec {
pname = "wayland";
version = "1.18.0";
2012-12-02 10:20:07 +00:00
src = fetchurl {
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
sha256 = "0k995rn96xkplrapz5k648j651wc43kq817xk1x8280h16gsfxa6";
2012-12-02 10:20:07 +00:00
};
2019-01-31 14:47:51 +00:00
separateDebugInfo = true;
mesonFlags = [ "-Ddocumentation=${lib.boolToString withDocumentation}" ];
patches = lib.optional isCross ./fix-wayland-cross-compilation.patch;
postPatch = lib.optionalString withDocumentation ''
patchShebangs doc/doxygen/gen-doxygen.py
'' + lib.optionalString isCross ''
substituteInPlace egl/meson.build --replace \
"find_program('nm').path()" \
"find_program('${stdenv.cc.targetPrefix}nm').path()"
'';
2018-11-26 07:12:45 +00:00
nativeBuildInputs = [
meson pkgconfig ninja
] ++ lib.optionals isCross [
wayland # For wayland-scanner during the build
] ++ lib.optionals withDocumentation [
(graphviz-nox.override { pango = null; }) # To avoid an infinite recursion
doxygen libxslt xmlto python3 docbook_xml_dtd_45
2018-11-26 07:12:45 +00:00
];
buildInputs = [ libffi expat libxml2
] ++ lib.optionals withDocumentation [
docbook_xsl docbook_xml_dtd_45 docbook_xml_dtd_42
];
2012-12-02 10:20:07 +00:00
meta = {
description = "Core Wayland window system code and protocol";
longDescription = ''
Wayland is a project to define a protocol for a compositor to talk to its
clients as well as a library implementation of the protocol.
The wayland protocol is essentially only about input handling and buffer
management, but also handles drag and drop, selections, window management
and other interactions that must go through the compositor (but not
rendering).
'';
homepage = "https://wayland.freedesktop.org/";
license = lib.licenses.mit; # Expat version
2015-06-01 19:01:53 +00:00
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ primeos codyopel ];
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
}