about summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland
diff options
context:
space:
mode:
authorAlexander Ried <ried@mytum.de>2016-04-08 22:09:31 +0200
committerAlexander Ried <ried@mytum.de>2016-04-08 23:22:51 +0200
commitaf82b8f7a7168719c0d7a07bd74b7124a54480b4 (patch)
treefcc7887b6f91c2af4e31f9dd1fea3a5394715450 /pkgs/development/libraries/wayland
parentbd4720a7d6248ca01996fe801e5edfe5ce1804b7 (diff)
downloadnixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar.gz
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar.bz2
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar.lz
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar.xz
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.tar.zst
nixlib-af82b8f7a7168719c0d7a07bd74b7124a54480b4.zip
wayland-protocols: init at 1.3
From https://lists.freedesktop.org/archives/wayland-devel/2015-November/025486.html
The purpose of this repository is to decouple Wayland
protocol development from the implementation in weston. wayland-protocols will
have its own releases not coupled with with wayland/weston releases and
will not carry any implementations.
Diffstat (limited to 'pkgs/development/libraries/wayland')
-rw-r--r--pkgs/development/libraries/wayland/protocols.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/pkgs/development/libraries/wayland/protocols.nix b/pkgs/development/libraries/wayland/protocols.nix
new file mode 100644
index 000000000000..0ae9d9d59c8a
--- /dev/null
+++ b/pkgs/development/libraries/wayland/protocols.nix
@@ -0,0 +1,27 @@
+{ lib, stdenv, fetchurl, pkgconfig
+, wayland
+}:
+
+stdenv.mkDerivation rec {
+  name = "wayland-protocols-${version}";
+  version = "1.3";
+
+  src = fetchurl {
+    url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
+    sha256 = "0byqvrsm6bkvylvzqy8wh5wpszwl5ra1z0yjqzqmw8przlrhdkbb";
+  };
+
+  nativeBuildInputs = [ pkgconfig ];
+
+  buildInputs = [ wayland ];
+
+  meta = {
+    description = "Wayland protocol extensions";
+    homepage    = http://wayland.freedesktop.org/;
+    license     = lib.licenses.mit;
+    platforms   = lib.platforms.linux;
+    maintainers = with lib.maintainers; [ ];
+  };
+
+  passthru.version = version;
+}