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

41 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
2015-02-19 17:57:13 +00:00
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
}:
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
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 = [
2015-02-19 17:57:13 +00:00
(mkFlag (expat != null) "scanner")
];
nativeBuildInputs = [ pkgconfig ];
2015-02-19 17:57:13 +00:00
buildInputs = [ libffi docbook_xsl doxygen graphviz libxslt xmlto expat ];
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
};
2015-02-19 17:57:13 +00:00
passthru.version = version;
2012-12-02 10:20:07 +00:00
}