mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
f85cf5297a
https://wpewebkit.org/release/libwpe-1.14.0.html https://github.com/WebPlatformForEmbedded/libwpe/compare/1.12.3...1.14.0 Changelog-Reviewed-By: Jan Tojnar <jtojnar@gmail.com>
42 lines
730 B
Nix
42 lines
730 B
Nix
{ stdenv
|
|
, lib
|
|
, fetchurl
|
|
, meson
|
|
, pkg-config
|
|
, libxkbcommon
|
|
, libGL
|
|
, ninja
|
|
, libX11
|
|
, webkitgtk
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libwpe";
|
|
version = "1.14.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://wpewebkit.org/releases/libwpe-${version}.tar.xz";
|
|
sha256 = "wHMwW7rF9EAswcikdTv6PWOkCJAfhhggUeqlp13YnAA=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
meson
|
|
ninja
|
|
];
|
|
|
|
buildInputs = [
|
|
libxkbcommon
|
|
libGL
|
|
libX11
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "General-purpose library for WPE WebKit";
|
|
license = licenses.bsd2;
|
|
homepage = "https://wpewebkit.org";
|
|
maintainers = webkitgtk.meta.maintainers ++ (with maintainers; [ matthewbauer ]);
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|