mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
1be2221634
Announcement: https://lists.freedesktop.org/archives/wayland-devel/2021-April/041815.html
31 lines
1013 B
Nix
31 lines
1013 B
Nix
{ lib, stdenv, fetchurl, wayland-scanner }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayland-protocols";
|
|
version = "1.21";
|
|
|
|
src = fetchurl {
|
|
url = "https://wayland.freedesktop.org/releases/${pname}-${version}.tar.xz";
|
|
sha256 = "1rfdlkzz67qsb955zqb8jbw3m22pl6ppvrvfq8bqiqcb5n24b6dr";
|
|
};
|
|
|
|
nativeBuildInputs = [ wayland-scanner ];
|
|
|
|
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;
|
|
}
|