2016-04-08 20:09:31 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig
|
|
|
|
, wayland
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "wayland-protocols-${version}";
|
2018-08-19 21:47:22 +00:00
|
|
|
version = "1.16";
|
2016-04-08 20:09:31 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://wayland.freedesktop.org/releases/${name}.tar.xz";
|
2018-08-19 21:47:22 +00:00
|
|
|
sha256 = "1icqikvhgv9kcf8lcqml3w9fb8q3igr4c3471jb6mlyw3yaqa53b";
|
2016-04-08 20:09:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ wayland ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Wayland protocol extensions";
|
2018-06-27 20:12:57 +00:00
|
|
|
homepage = https://wayland.freedesktop.org/;
|
2016-04-08 20:09:31 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru.version = version;
|
|
|
|
}
|