1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-01 01:51:24 +00:00
nixpkgs/pkgs/development/libraries/wayland/default.nix

24 lines
593 B
Nix
Raw Normal View History

2013-02-17 02:16:00 +00:00
{ stdenv, fetchurl, libffi, expat, pkgconfig, libxslt, docbook_xsl, doxygen }:
2012-12-02 10:20:07 +00:00
stdenv.mkDerivation rec {
name = "wayland-1.0.5";
2012-12-02 10:20:07 +00:00
src = fetchurl {
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
sha256 = "130n7v5i7rfsrli2n8vdzfychlgd8v7by7sfgp8vfqdlss5km34w";
2012-12-02 10:20:07 +00:00
};
2013-02-17 02:16:00 +00:00
buildInputs = [ pkgconfig libffi expat libxslt docbook_xsl doxygen ];
2012-12-02 10:20:07 +00:00
meta = {
description = "The reference implementation of the Wayland protocol";
homepage = http://wayland.freedesktop.org;
license = stdenv.lib.licenses.bsd3;
2013-02-17 02:16:00 +00:00
platforms = stdenv.lib.platforms.all;
2012-12-02 10:20:07 +00:00
};
}