summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2016-09-24 19:17:32 +0200
committerVladimír Čunát <vcunat@gmail.com>2016-09-24 19:21:39 +0200
commitc68850c6be7e6e9ee0148280e4edb21ac9601f67 (patch)
tree55f604b5784a36bebab7bde57160ef2d3a085e55 /pkgs/development/libraries/wayland
parente2a9617185321c38482cab343e5d4a6a182b7ce9 (diff)
downloadnixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.gz
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.bz2
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.lz
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.xz
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.tar.zst
nixpkgs-c68850c6be7e6e9ee0148280e4edb21ac9601f67.zip
nixos opengl: use mesa_drivers.out
...instead of mesa_noglu.out. Closures of systems remain unchanged,
as both are in (and the .out output is very small anyway).
This is to make sure that we use lib*GL* that aren't slowed down by grsecurity.
Diffstat (limited to 'pkgs/development/libraries/wayland')
-rw-r--r--pkgs/development/libraries/wayland/1.9.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/libraries/wayland/1.9.nix b/pkgs/development/libraries/wayland/1.9.nix
new file mode 100644
index 00000000000..4c6d95e67c0
--- /dev/null
+++ b/pkgs/development/libraries/wayland/1.9.nix
@@ -0,0 +1,33 @@
+{ 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.9.0";
+
+  src = fetchurl {
+    url = "http://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    = http://wayland.freedesktop.org/;
+    license     = lib.licenses.mit;
+    platforms   = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ codyopel wkennington ];
+  };
+
+  passthru.version = version;
+}