{ stdenv, lib, fetchurl, meson, pkg-config, libxkbcommon, libGL, ninja, libX11, }: stdenv.mkDerivation rec { pname = "libwpe"; version = "1.16.3"; src = fetchurl { url = "https://wpewebkit.org/releases/libwpe-${version}.tar.xz"; sha256 = "sha256-yID6jWB7Kqbq3efW1jArE5brw4No/iMy+iDhk8fuFCA="; }; nativeBuildInputs = [ pkg-config meson ninja ]; buildInputs = [ libxkbcommon libGL libX11 ]; meta = { description = "General-purpose library for WPE WebKit"; license = lib.licenses.bsd2; homepage = "https://wpewebkit.org"; maintainers = [ ]; platforms = lib.platforms.linux; }; }