From 7c6e75239cc6094f07f5bb328d0e05f908ee27b0 Mon Sep 17 00:00:00 2001 From: "guillem.cordoba" Date: Thu, 11 Apr 2024 11:06:44 +0200 Subject: [PATCH] Added tauri deps to sweettest --- nix/sweettest.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/nix/sweettest.nix b/nix/sweettest.nix index 86ec500..d8bb84c 100644 --- a/nix/sweettest.nix +++ b/nix/sweettest.nix @@ -13,6 +13,25 @@ let crate = cargoToml.package.name; buildInputs = (with pkgs; [ openssl holochain.packages.opensslStatic sqlcipher glib ]) + ++ (lib.optionals pkgs.stdenv.isLinux + (with pkgs; [ + webkitgtk_4_1.dev + gdk-pixbuf + gtk3 + # Video/Audio data composition framework tools like "gst-inspect", "gst-launch" ... + gst_all_1.gstreamer + # Common plugins like "filesrc" to combine within e.g. gst-launch + gst_all_1.gst-plugins-base + # Specialized plugins separated by quality + gst_all_1.gst-plugins-good + gst_all_1.gst-plugins-bad + gst_all_1.gst-plugins-ugly + # Plugins to reuse ffmpeg to play almost every video format + gst_all_1.gst-libav + # Support the Video Audio (Hardware) Acceleration API + gst_all_1.gst-vaapi + libsoup_3 + ])) ++ (lib.optionals pkgs.stdenv.isDarwin (with pkgs.darwin.apple_sdk_11_0.frameworks; [ AppKit