mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
wayland_1_9: remove
ancient compat version, that no longer has any use
was introduced > 3 yrs ago in 0593ad2b16
This commit is contained in:
parent
f86d3c2f78
commit
8b3a1c0ed0
2 changed files with 0 additions and 35 deletions
|
@ -1,33 +0,0 @@
|
||||||
{ 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 {
|
|
||||||
pname = "wayland";
|
|
||||||
version = "1.9.0";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.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;
|
|
||||||
}
|
|
|
@ -14100,8 +14100,6 @@ in
|
||||||
|
|
||||||
wayland = callPackage ../development/libraries/wayland { };
|
wayland = callPackage ../development/libraries/wayland { };
|
||||||
|
|
||||||
wayland_1_9 = callPackage ../development/libraries/wayland/1.9.nix { };
|
|
||||||
|
|
||||||
wayland-protocols = callPackage ../development/libraries/wayland/protocols.nix { };
|
wayland-protocols = callPackage ../development/libraries/wayland/protocols.nix { };
|
||||||
|
|
||||||
waylandpp = callPackage ../development/libraries/waylandpp { };
|
waylandpp = callPackage ../development/libraries/waylandpp { };
|
||||||
|
|
Loading…
Reference in a new issue