diff options
Diffstat (limited to 'pkgs')
| -rw-r--r-- | pkgs/ahoviewer.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pkgs/ahoviewer.nix b/pkgs/ahoviewer.nix index cde1c78..1effbc6 100644 --- a/pkgs/ahoviewer.nix +++ b/pkgs/ahoviewer.nix @@ -21,9 +21,17 @@ pkgs.stdenv.mkDerivation { libpeas libsecret libzip + gobject-introspection + (gst_all_1.gst-plugins-good.override { gtkSupport = true; }) + gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-ugly + gst_all_1.gst-libav ]; - nativeBuildInputs = [ pkgs.pkg-config ]; + nativeBuildInputs = with pkgs; [ + pkg-config + wrapGAppsHook4 + ]; configurePhase = "meson setup build --buildtype=release"; |