Files
nixpkgs/pkgs/development/libraries/libwpe/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +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.2";
src = fetchurl {
url = "https://wpewebkit.org/releases/libwpe-${version}.tar.xz";
sha256 = "sha256-lgvdEcPyz1vZFWlgPtbSqkL9QADtfKyTCoBOrDZ4iNc=";
};
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;
};
}