libwpe: inherit maintainers from webkitgtk

This commit is contained in:
Jan Tojnar 2022-05-19 03:25:15 +02:00
parent 158386e5a3
commit a0e8b9daf6
2 changed files with 8 additions and 4 deletions

View file

@ -6,7 +6,9 @@
, libxkbcommon
, libGL
, ninja
, libX11 }:
, libX11
, webkitgtk
}:
stdenv.mkDerivation rec {
pname = "libwpe";
@ -33,7 +35,7 @@ stdenv.mkDerivation rec {
description = "General-purpose library for WPE WebKit";
license = licenses.bsd2;
homepage = "https://wpewebkit.org";
maintainers = with maintainers; [ matthewbauer ];
maintainers = webkitgtk.meta.maintainers ++ (with maintainers; [ matthewbauer ]);
platforms = platforms.linux;
};
}

View file

@ -10,7 +10,9 @@
, libwpe
, libxkbcommon
, libGL
, libX11 }:
, libX11
, webkitgtk
}:
stdenv.mkDerivation rec {
pname = "wpebackend-fdo";
@ -46,7 +48,7 @@ stdenv.mkDerivation rec {
description = "Freedesktop.org backend for WPE WebKit";
license = licenses.bsd2;
homepage = "https://wpewebkit.org";
maintainers = with maintainers; [ matthewbauer ];
maintainers = webkitgtk.meta.maintainers ++ (with maintainers; [ matthewbauer ]);
platforms = platforms.linux;
};
}