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

35 lines
951 B
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig
2015-05-13 16:16:07 +00:00
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, expat
}:
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;
with stdenv.lib;
2015-05-13 16:16:07 +00:00
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
};
2015-05-13 16:16:07 +00:00
configureFlags = "--with-scanner --disable-documentation";
nativeBuildInputs = [ pkgconfig ];
2015-05-13 16:16:07 +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
}