summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/wayland')
-rw-r--r--pkgs/development/libraries/wayland/1.5.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/development/libraries/wayland/1.5.nix b/pkgs/development/libraries/wayland/1.5.nix
deleted file mode 100644
index ae9fac06eee..00000000000
--- a/pkgs/development/libraries/wayland/1.5.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ stdenv, fetchurl, libffi, expat, pkgconfig, libxslt, docbook_xsl, doxygen }:
-
-let version = "1.5.0"; in
-
-stdenv.mkDerivation rec {
-  name = "wayland-${version}";
-
-  src = fetchurl {
-    url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
-    sha256 = "1da179livkkmfsds32yhh4zflxn9qs6av023702kx2w8mzly2s80";
-  };
-
-  buildInputs = [ pkgconfig libffi expat libxslt docbook_xsl doxygen ];
-
-  meta = {
-    description = "Reference implementation of the wayland protocol";
-    homepage = http://wayland.freedesktop.org/;
-    license = stdenv.lib.licenses.mit;
-    platforms = stdenv.lib.platforms.linux;
-  };
-}