nixpkgs/pkgs/development/libraries/libwpe/fdo.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
884 B
Nix
Raw Normal View History

2020-08-23 04:42:57 +00:00
{ stdenv
, lib
, fetchurl
, meson
, pkg-config
, ninja
, wayland
, libepoxy
2020-08-23 04:42:57 +00:00
, glib
, libwpe
, libxkbcommon
, libGL
, libX11
, webkitgtk
}:
2020-08-23 04:42:57 +00:00
stdenv.mkDerivation rec {
pname = "wpebackend-fdo";
2022-08-12 03:57:14 +00:00
version = "1.12.1";
2020-08-23 04:42:57 +00:00
src = fetchurl {
url = "https://wpewebkit.org/releases/${pname}-${version}.tar.xz";
2022-08-12 03:57:14 +00:00
sha256 = "sha256-RaqDPETsKS8x+pQ7AbjMdeVOtiOte6amb8LxGP5p5ik=";
2020-08-23 04:42:57 +00:00
};
depsBuildBuild = [
pkg-config
];
nativeBuildInputs = [
pkg-config
meson
ninja
wayland
];
buildInputs = [
wayland
libepoxy
2020-08-23 04:42:57 +00:00
glib
libwpe
libxkbcommon
libGL
libX11
];
meta = with lib; {
description = "Freedesktop.org backend for WPE WebKit";
license = licenses.bsd2;
homepage = "https://wpewebkit.org";
maintainers = webkitgtk.meta.maintainers ++ (with maintainers; [ matthewbauer ]);
2020-08-23 04:42:57 +00:00
platforms = platforms.linux;
};
}