nixpkgs/pkgs/development/libraries/wayland/default.nix
2015-06-04 14:54:48 +02:00

34 lines
995 B
Nix

{ lib, stdenv, fetchurl, pkgconfig
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto
, expat ? null # Build wayland-scanner (currently cannot be disabled as of 1.7.0)
}:
# Require the optional to be enabled until upstream fixes or removes the configure flag
assert expat != null;
stdenv.mkDerivation rec {
name = "wayland-${version}";
version = "1.7.0";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "173w0pqzk2m7hjlg15bymrx7ynxgq1ciadg03hzybxwnvfi4gsmx";
};
configureFlags = "--with-scanner";
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libffi docbook_xsl doxygen graphviz libxslt xmlto expat ];
meta = {
description = "Reference implementation of the wayland protocol";
homepage = http://wayland.freedesktop.org/;
license = lib.licenses.mit;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ codyopel wkennington ];
};
passthru.version = version;
}