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

53 lines
839 B
Nix
Raw Normal View History

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