nixpkgs/pkgs/development/libraries/libwpe/fdo.nix
Alyssa Ross 8714155dd0 libwpe-fdo: depend on wayland-scanner
Currently wayland-scanner is defined to be wayland.bin, but we want to
split wayland-scanner into a separate package.
2024-08-11 16:04:14 +03:00

55 lines
865 B
Nix

{ stdenv
, lib
, fetchurl
, meson
, pkg-config
, ninja
, wayland-scanner
, wayland
, libepoxy
, glib
, libwpe
, libxkbcommon
, libGL
, libX11
}:
stdenv.mkDerivation rec {
pname = "wpebackend-fdo";
version = "1.14.2";
src = fetchurl {
url = "https://wpewebkit.org/releases/wpebackend-fdo-${version}.tar.xz";
sha256 = "k8l2aumGTurq7isKdPIsvKCN9CwaG9tVsIbyUo44DTg=";
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
pkg-config
meson
ninja
wayland-scanner
];
buildInputs = [
wayland
libepoxy
glib
libwpe
libxkbcommon
libGL
libX11
];
meta = with lib; {
description = "Freedesktop.org backend for WPE WebKit";
license = licenses.bsd2;
homepage = "https://wpewebkit.org";
maintainers = with maintainers; [ matthewbauer ];
platforms = platforms.linux;
};
}