b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
34 lines
990 B
Nix
34 lines
990 B
Nix
{ lib, stdenv, fetchurl, pkgconfig
|
|
, libffi, libxml2
|
|
, 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.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "1yhy62vkbq8j8c9zaa6yzvn75cd99kfa8n2zfdwl80x019r711ww";
|
|
};
|
|
|
|
configureFlags = [ "--with-scanner" "--disable-documentation" ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ libffi /* docbook_xsl doxygen graphviz libxslt xmlto */ expat libxml2 ];
|
|
|
|
meta = {
|
|
description = "Reference implementation of the wayland protocol";
|
|
homepage = https://wayland.freedesktop.org/;
|
|
license = lib.licenses.mit;
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ codyopel ];
|
|
};
|
|
|
|
passthru.version = version;
|
|
}
|