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

34 lines
1.0 KiB
Nix
Raw Normal View History

2015-06-01 22:01:53 +03:00
{ lib, stdenv, fetchurl, pkgconfig
2016-04-08 23:11:08 +03:00
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, libxml2
2015-02-19 20:57:13 +03:00
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
}:
2012-12-02 14:20:07 +04:00
# Require the optional to be enabled until upstream fixes or removes the configure flag
2015-02-19 20:57:13 +03:00
assert expat != null;
2012-12-02 14:20:07 +04:00
stdenv.mkDerivation rec {
name = "wayland-${version}";
2016-09-21 12:07:25 +03:00
version = "1.12.0";
2012-12-02 14:20:07 +04:00
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
2016-09-21 12:07:25 +03:00
sha256 = "d6b4135cba0188abcb7275513c72dede751d6194f6edc5b82183a3ba8b821ab1";
2012-12-02 14:20:07 +04:00
};
2017-01-28 23:04:28 +03:00
configureFlags = [ "--with-scanner" "--disable-documentation" ];
nativeBuildInputs = [ pkgconfig ];
2016-04-08 23:11:08 +03:00
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ];
2012-12-02 14:20:07 +04:00
meta = {
description = "Reference implementation of the wayland protocol";
homepage = http://wayland.freedesktop.org/;
2015-06-01 22:01:53 +03:00
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ codyopel wkennington ];
2012-12-02 14:20:07 +04:00
};
2015-02-19 20:57:13 +03:00
passthru.version = version;
2012-12-02 14:20:07 +04:00
}