summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-10-04 02:08:00 +0200
committerRobin Gloster <mail@glob.in>2019-10-04 02:08:00 +0200
commit8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f (patch)
tree4b15dc6308d55f6630801e2161b1ec95182805b1 /pkgs/development/libraries/wayland
parentf86d3c2f78d701c6206ab57ed4044b6c9850f8d9 (diff)
downloadnixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar.gz
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar.bz2
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar.lz
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar.xz
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.tar.zst
nixpkgs-8b3a1c0ed0cc4bf071aaf5ebd6b9b4d25dc4318f.zip
wayland_1_9: remove
ancient compat version, that no longer has any use

was introduced > 3 yrs ago in https://github.com/NixOS/nixpkgs/commit/0593ad2b1613e22efa88307ee6ee4115563721fb
Diffstat (limited to 'pkgs/development/libraries/wayland')
-rw-r--r--pkgs/development/libraries/wayland/1.9.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/pkgs/development/libraries/wayland/1.9.nix b/pkgs/development/libraries/wayland/1.9.nix
deleted file mode 100644
index 7572051b1de..00000000000
--- a/pkgs/development/libraries/wayland/1.9.nix
+++ /dev/null
@@ -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;
-}