diff options
| author | Fuwn <[email protected]> | 2024-10-16 02:25:55 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-16 02:25:55 -0700 |
| commit | 5f10a9675892cc5e35d2d4e314c4e5bc5d8c7fbf (patch) | |
| tree | 08df603af01acc364df1cb8f933b187bc1d7b7a9 /pkgs | |
| parent | fix(yae): add ahoviewer tag predicate (diff) | |
| download | tsutsumi-5f10a9675892cc5e35d2d4e314c4e5bc5d8c7fbf.tar.xz tsutsumi-5f10a9675892cc5e35d2d4e314c4e5bc5d8c7fbf.zip | |
feat(ahoviewer): update dialogue compatibility
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"; |