wayland: 1.6.0 -> 1.7.0 & add optionals
All non-essential dependencies are now optional, with exception to wayland-scanner which if not enabled causes wayland to fail to build
This commit is contained in:
parent
9775f462b7
commit
a53da93b2b
@ -1,21 +1,45 @@
|
|||||||
{ stdenv, fetchurl, libffi, expat, pkgconfig, libxslt, docbook_xsl, doxygen }:
|
{ stdenv, fetchurl, pkgconfig
|
||||||
|
, libffi
|
||||||
|
, scannerSupport ? true, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
|
||||||
|
, documentationSupport ? false, docbook_xsl ? null, doxygen ? null, graphviz-nox ? null, libxslt ? null, xmlto ? null #, publican ? null
|
||||||
|
}:
|
||||||
|
|
||||||
let version = "1.6.0"; in
|
# Require the optional to be enabled until upstream fixes or removes the configure flag
|
||||||
|
assert scannerSupport;
|
||||||
|
|
||||||
|
assert scannerSupport -> (expat != null);
|
||||||
|
assert documentationSupport -> ((docbook_xsl != null) && (doxygen != null) && (graphviz-nox != null) && (libxslt != null) && (xmlto != null));
|
||||||
|
|
||||||
|
let
|
||||||
|
mkFlag = optSet: flag: if optSet then "--enable-${flag}" else "--disable-${flag}";
|
||||||
|
in
|
||||||
|
|
||||||
|
with stdenv.lib;
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "wayland-${version}";
|
name = "wayland-${version}";
|
||||||
|
version = "1.7.0";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
|
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
|
||||||
sha256 = "0zzwlrmxil10g9rvdgha0y1d8z0x97g65g14kl2qrl2krwni1md7";
|
sha256 = "173w0pqzk2m7hjlg15bymrx7ynxgq1ciadg03hzybxwnvfi4gsmx";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig libffi expat libxslt docbook_xsl doxygen ];
|
configureFlags = [
|
||||||
|
(mkFlag scannerSupport "scanner")
|
||||||
|
(mkFlag documentationSupport "documentation")
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
|
buildInputs = [ libffi ]
|
||||||
|
++ optional scannerSupport expat
|
||||||
|
++ optionals documentationSupport [ docbook_xsl doxygen graphviz-nox libxslt xmlto ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Reference implementation of the wayland protocol";
|
description = "Reference implementation of the wayland protocol";
|
||||||
homepage = http://wayland.freedesktop.org/;
|
homepage = http://wayland.freedesktop.org/;
|
||||||
license = stdenv.lib.licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ codyopel wkennington ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user