mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
ec3965d8d0
See #490 discussion. This reverts commit1278859d31
, reversing changes made to0c020c98f9
. Conflicts: pkgs/desktops/xfce/core/xfce4-session.nix (take master) pkgs/lib/misc.nix (auto)
23 lines
593 B
Nix
23 lines
593 B
Nix
{ stdenv, fetchurl, libffi, expat, pkgconfig, libxslt, docbook_xsl, doxygen }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "wayland-1.0.5";
|
|
|
|
src = fetchurl {
|
|
url = "http://wayland.freedesktop.org/releases/${name}.tar.xz";
|
|
|
|
sha256 = "130n7v5i7rfsrli2n8vdzfychlgd8v7by7sfgp8vfqdlss5km34w";
|
|
};
|
|
|
|
buildInputs = [ pkgconfig libffi expat libxslt docbook_xsl doxygen ];
|
|
|
|
meta = {
|
|
description = "The reference implementation of the Wayland protocol";
|
|
|
|
homepage = http://wayland.freedesktop.org;
|
|
|
|
license = stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|