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

34 lines
1 KiB
Nix
Raw Normal View History

2015-06-01 19:01:53 +00:00
{ lib, 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;
2012-12-02 10:20:07 +00:00
stdenv.mkDerivation rec {
name = "wayland-${version}";
2015-06-19 04:58:45 +00:00
version = "1.8.1";
2012-12-02 10:20:07 +00:00
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
2015-06-19 04:58:45 +00:00
sha256 = "1j3gfzn8i0xhk3j34mwb2srrscjxfyi279jhyq80mz943j6r6z7i";
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/;
2015-06-01 19:01:53 +00:00
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.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
}