1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/development/libraries/wayland/default.nix
codyopel a53da93b2b 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
2015-02-19 09:47:40 -08:00

46 lines
1.5 KiB
Nix

{ 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
}:
# 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 {
name = "wayland-${version}";
version = "1.7.0";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "173w0pqzk2m7hjlg15bymrx7ynxgq1ciadg03hzybxwnvfi4gsmx";
};
configureFlags = [
(mkFlag scannerSupport "scanner")
(mkFlag documentationSupport "documentation")
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libffi ]
++ optional scannerSupport expat
++ optionals documentationSupport [ docbook_xsl doxygen graphviz-nox libxslt xmlto ];
meta = {
description = "Reference implementation of the wayland protocol";
homepage = http://wayland.freedesktop.org/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ codyopel wkennington ];
};
}