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

46 lines
1.5 KiB
Nix
Raw Normal View History

{ 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
}:
2012-12-02 10:20:07 +00:00
# Require the optional to be enabled until upstream fixes or removes the configure flag
assert scannerSupport;
2012-12-02 10:20:07 +00:00
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;
2012-12-02 10:20:07 +00:00
stdenv.mkDerivation rec {
name = "wayland-${version}";
version = "1.7.0";
2012-12-02 10:20:07 +00:00
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "173w0pqzk2m7hjlg15bymrx7ynxgq1ciadg03hzybxwnvfi4gsmx";
2012-12-02 10:20:07 +00:00
};
configureFlags = [
(mkFlag scannerSupport "scanner")
(mkFlag documentationSupport "documentation")
];
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libffi ]
++ optional scannerSupport expat
++ optionals documentationSupport [ docbook_xsl doxygen graphviz-nox libxslt xmlto ];
2012-12-02 10:20:07 +00:00
meta = {
description = "Reference implementation of the wayland protocol";
homepage = http://wayland.freedesktop.org/;
license = licenses.mit;
platforms = platforms.linux;
maintainers = with maintainers; [ codyopel wkennington ];
2012-12-02 10:20:07 +00:00
};
}