mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 12:53:05 +00:00
webkitgtk: Add meta.pkgConfigModules
and test
This commit is contained in:
parent
c733f0bf8a
commit
b7e9a15ab9
@ -64,6 +64,7 @@
|
|||||||
, enableGeoLocation ? true
|
, enableGeoLocation ? true
|
||||||
, withLibsecret ? true
|
, withLibsecret ? true
|
||||||
, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd
|
, systemdSupport ? lib.meta.availableOn stdenv.hostPlatform systemd
|
||||||
|
, testers
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
@ -232,10 +233,17 @@ stdenv.mkDerivation (finalAttrs: {
|
|||||||
|
|
||||||
requiredSystemFeatures = [ "big-parallel" ];
|
requiredSystemFeatures = [ "big-parallel" ];
|
||||||
|
|
||||||
|
passthru.tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Web content rendering engine, GTK port";
|
description = "Web content rendering engine, GTK port";
|
||||||
homepage = "https://webkitgtk.org/";
|
homepage = "https://webkitgtk.org/";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
|
pkgConfigModules = [
|
||||||
|
"javascriptcoregtk-4.0"
|
||||||
|
"webkit2gtk-4.0"
|
||||||
|
"webkit2gtk-web-extension-4.0"
|
||||||
|
];
|
||||||
platforms = platforms.linux ++ platforms.darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
broken = stdenv.isDarwin;
|
broken = stdenv.isDarwin;
|
||||||
|
Loading…
Reference in New Issue
Block a user