mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 06:01:15 +00:00
wayland: 1.9.0 -> 1.10.0
This commit is contained in:
parent
af82b8f7a7
commit
7f2d418954
|
@ -1,5 +1,5 @@
|
|||
{ lib, stdenv, fetchurl, pkgconfig
|
||||
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto
|
||||
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, libxml2
|
||||
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
|
||||
}:
|
||||
|
||||
|
@ -8,18 +8,18 @@ assert expat != null;
|
|||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wayland-${version}";
|
||||
version = "1.9.0";
|
||||
version = "1.10.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
|
||||
sha256 = "1yhy62vkbq8j8c9zaa6yzvn75cd99kfa8n2zfdwl80x019r711ww";
|
||||
sha256 = "1p307ly1yyqjnzn9dbv78yffql2qszn84qk74lwanl3gma8fgxjb";
|
||||
};
|
||||
|
||||
configureFlags = "--with-scanner --disable-documentation";
|
||||
|
||||
nativeBuildInputs = [ pkgconfig ];
|
||||
|
||||
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat ];
|
||||
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ];
|
||||
|
||||
meta = {
|
||||
description = "Reference implementation of the wayland protocol";
|
||||
|
|
Loading…
Reference in a new issue