35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchurl, pkgconfig
|
|
, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayland-protocols";
|
|
version = "1.18";
|
|
|
|
src = fetchurl {
|
|
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
|
sha256 = "1cvl93h83ymbfhb567jv5gzyq08181w7c46rsw4xqqqpcvkvfwrx";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
buildInputs = [ wayland ];
|
|
|
|
meta = {
|
|
description = "Wayland protocol extensions";
|
|
longDescription = ''
|
|
wayland-protocols contains Wayland protocols that add functionality not
|
|
available in the Wayland core protocol. Such protocols either add
|
|
completely new functionality, or extend the functionality of some other
|
|
protocol either in Wayland core, or some other protocol in
|
|
wayland-protocols.
|
|
'';
|
|
homepage = https://gitlab.freedesktop.org/wayland/wayland-protocols;
|
|
license = lib.licenses.mit; # Expat version
|
|
platforms = lib.platforms.linux;
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
};
|
|
|
|
passthru.version = version;
|
|
}
|