nixpkgs/pkgs/development/libraries/wayland/default.nix
Carles Pagès a53a7bc0e4 Update wayland and weston to 1.0.3.
I also removed the screenshooter-client-protocol patch as this was fixed
upstream.
2013-01-08 23:21:36 +01:00

21 lines
533 B
Nix

{ stdenv, fetchurl, pkgconfig, libffi, expat, doxygen }:
let version = "1.0.3"; in
stdenv.mkDerivation rec {
name = "wayland-${version}";
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "04sr7bl1f0qk837qpc9zpxirkgvlp3pval3326mbld553ghmxgpn";
};
buildInputs = [ pkgconfig libffi expat doxygen ];
meta = {
description = "Reference implementation of the wayland protocol";
homepage = http://wayland.freedesktop.org/;
license = stdenv.lib.licenses.mit;
};
}