2016-04-08 13:09:31 -07:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig
|
|
|
|
, wayland
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "wayland-protocols";
|
2019-08-24 03:31:20 -07:00
|
|
|
version = "1.18";
|
2016-04-08 13:09:31 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
2019-08-24 03:31:20 -07:00
|
|
|
sha256 = "1cvl93h83ymbfhb567jv5gzyq08181w7c46rsw4xqqqpcvkvfwrx";
|
2016-04-08 13:09:31 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
|
|
|
|
buildInputs = [ wayland ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Wayland protocol extensions";
|
2018-06-27 13:12:57 -07:00
|
|
|
homepage = https://wayland.freedesktop.org/;
|
2016-04-08 13:09:31 -07:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
platforms = lib.platforms.linux;
|
|
|
|
maintainers = with lib.maintainers; [ ];
|
|
|
|
};
|
|
|
|
|
|
|
|
passthru.version = version;
|
|
|
|
}
|