summary refs log tree commit diff
path: root/pkgs/development/libraries/wayland/default.nix
diff options
context:
space:
mode:
authorCarles Pagès <page@cubata.homelinux.net>2012-12-02 11:20:07 +0100
committerCarles Pagès <page@cubata.homelinux.net>2012-12-02 11:20:07 +0100
commit4b87cc95838246c05f3025e52ff71e6aa853a9f9 (patch)
tree2727f67e23d6e398d47087a5c72622ed12af4da5 /pkgs/development/libraries/wayland/default.nix
parentd00afb644fc5bf3e8038fe817e181b85e53a285a (diff)
downloadnixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar.gz
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar.bz2
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar.lz
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar.xz
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.tar.zst
nixpkgs-4b87cc95838246c05f3025e52ff71e6aa853a9f9.zip
Add wayland 1.0.2.
Diffstat (limited to 'pkgs/development/libraries/wayland/default.nix')
-rw-r--r--pkgs/development/libraries/wayland/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/wayland/default.nix b/pkgs/development/libraries/wayland/default.nix
new file mode 100644
index 00000000000..79576569e19
--- /dev/null
+++ b/pkgs/development/libraries/wayland/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig, libffi, expat, doxygen }:
+
+let version = "1.0.2"; in
+
+stdenv.mkDerivation rec {
+  name = "wayland-${version}";
+
+  src = fetchurl {
+    url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
+    sha256 = "0q2p83s2c7l5n6yzii3f2r6wrl3bd99d0v0fai21pb4jwijmxq71";
+  };
+
+  buildInputs = [ pkgconfig libffi expat doxygen ];
+
+  meta = {
+    description = "Reference implementation of the wayland protocol";
+    homepage = http://wayland.freedesktop.org/;
+    license = stdenv.lib.licenses.mit;
+  };
+}