f43da349ba
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/wayland/versions. These checks were done: - built on NixOS - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner -h’ got 0 exit code - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner --help’ got 0 exit code - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner help’ got 0 exit code - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner -v’ and found version 1.15.0 - ran ‘/nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0/bin/wayland-scanner --version’ and found version 1.15.0 - found 1.15.0 with grep in /nix/store/ij8fn0all1sl84wy94wpvc0ih0c1bidq-wayland-1.15.0 - directory tree listing: https://gist.github.com/4f5bd9b49f975338e758858eb2b89e4d
34 lines
1.0 KiB
Nix
34 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig
|
|
, libffi, docbook_xsl, doxygen, graphviz, libxslt, xmlto, 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.15.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
|
|
sha256 = "1c5fnys8hi71cnzjv5k7j0r8gx80p0yyqlrpmn06mmarhnxvwgzb";
|
|
};
|
|
|
|
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 wkennington ];
|
|
};
|
|
|
|
passthru.version = version;
|
|
}
|