Files
quantenzitrone 55280fa564 various: rename references from libX11 to libx11
this shouldn't create any rebuilds
2026-02-06 00:24:34 +01:00

42 lines
671 B
Nix

{
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;
};
}