surf: enable audio & video support

This commit is contained in:
Nikolay Korotkiy 2022-06-29 21:08:03 +03:00
parent 78f79c21e9
commit 70daeea1c0
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -1,7 +1,7 @@
{ lib, stdenv, fetchgit
, pkg-config, wrapGAppsHook
, glib, gcr, glib-networking, gsettings-desktop-schemas, gtk, libsoup, webkitgtk
, xorg, dmenu, findutils, gnused, coreutils
, xorg, dmenu, findutils, gnused, coreutils, gst_all_1
, patches ? null
}:
@ -17,7 +17,21 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkg-config wrapGAppsHook ];
buildInputs = [ glib gcr glib-networking gsettings-desktop-schemas gtk libsoup webkitgtk ];
buildInputs = [
glib
gcr
glib-networking
gsettings-desktop-schemas
gtk
libsoup
webkitgtk
] ++ (with gst_all_1; [
# Audio & video support for webkitgtk WebView
gstreamer
gst-plugins-base
gst-plugins-good
gst-plugins-bad
]);
inherit patches;