mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
libwpe-fdo: init at 1.7.1
This commit is contained in:
parent
8f027e6b65
commit
b2eb8992c7
52
pkgs/development/libraries/libwpe/fdo.nix
Normal file
52
pkgs/development/libraries/libwpe/fdo.nix
Normal file
@ -0,0 +1,52 @@
|
||||
{ stdenv
|
||||
, lib
|
||||
, fetchurl
|
||||
, meson
|
||||
, pkg-config
|
||||
, ninja
|
||||
, wayland
|
||||
, epoxy
|
||||
, glib
|
||||
, libwpe
|
||||
, libxkbcommon
|
||||
, libGL
|
||||
, libX11 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wpebackend-fdo";
|
||||
version = "1.7.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://wpewebkit.org/releases/${pname}-${version}.tar.xz";
|
||||
sha256 = "1xf6akagvpyh0nyxkfijrx5avp6ravnivy28dhk64dsfx9rhm64v";
|
||||
};
|
||||
|
||||
depsBuildBuild = [
|
||||
pkg-config
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config
|
||||
meson
|
||||
ninja
|
||||
wayland
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
epoxy
|
||||
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;
|
||||
};
|
||||
}
|
@ -14608,6 +14608,8 @@ in
|
||||
|
||||
libwpe = callPackage ../development/libraries/libwpe { };
|
||||
|
||||
libwpe-fdo = callPackage ../development/libraries/libwpe/fdo.nix { };
|
||||
|
||||
libyaml = callPackage ../development/libraries/libyaml { };
|
||||
|
||||
libyamlcpp = callPackage ../development/libraries/libyaml-cpp { };
|
||||
|
Loading…
Reference in New Issue
Block a user