mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 21:04:30 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ lib, stdenv, fetchurl
|
|
, pkg-config
|
|
, meson, ninja, wayland-scanner
|
|
, python3, wayland
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayland-protocols";
|
|
version = "1.31";
|
|
|
|
doCheck = stdenv.hostPlatform == stdenv.buildPlatform && wayland.withLibraries;
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/wayland/${pname}/-/releases/${version}/downloads/${pname}-${version}.tar.xz";
|
|
hash = "sha256-oH+nIu2HZ27AINhncUvJovJMRk2nORLzlwbu71IZ4jg=";
|
|
};
|
|
|
|
postPatch = lib.optionalString doCheck ''
|
|
patchShebangs tests/
|
|
'';
|
|
|
|
depsBuildBuild = [ pkg-config ];
|
|
nativeBuildInputs = [ meson ninja wayland-scanner ];
|
|
nativeCheckInputs = [ python3 wayland ];
|
|
|
|
mesonFlags = [ "-Dtests=${lib.boolToString doCheck}" ];
|
|
|
|
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.all;
|
|
maintainers = with lib.maintainers; [ primeos ];
|
|
};
|
|
|
|
passthru.version = version;
|
|
}
|