From cf2fa7b7b0df121f2af6c9b001d7705ba923701d Mon Sep 17 00:00:00 2001 From: Jan Tojnar Date: Fri, 2 Sep 2022 10:39:32 +0000 Subject: [PATCH] =?UTF-8?q?gnome.gnome-software:=2043.beta=20=E2=86=92=204?= =?UTF-8?q?3.rc?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://gitlab.gnome.org/GNOME/gnome-software/-/compare/43.beta...43.rc Testing the video screenshots implemented in https://gitlab.gnome.org/GNOME/gnome-software/-/merge_requests/1451 wget https://gitlab.gnome.org/GNOME/gnome-software/uploads/0dc8042e43b346e80c70f26d27bc0330/test-typing-booster-test.appdata.xml gnome-software --show-metainfo test-typing-booster-test.appdata.xml requires - gst-plugins-base: “GStreamer-Play GstPlay: 'playbin' element not found, please check your setup” - gst-plugins-good: “GStreamer-Play GstPlay: scaletempo element not available. Audio pitch will not be preserved during trick modes” but it crashes for me in libdrm. Changelog-Reviewed-By: Jan Tojnar --- pkgs/desktops/gnome/core/gnome-software/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/desktops/gnome/core/gnome-software/default.nix b/pkgs/desktops/gnome/core/gnome-software/default.nix index 95afefee2dc9..fb7735a30390 100644 --- a/pkgs/desktops/gnome/core/gnome-software/default.nix +++ b/pkgs/desktops/gnome/core/gnome-software/default.nix @@ -36,6 +36,7 @@ , gtk-doc , desktop-file-utils , libsysprof-capture +, gst_all_1 }: let @@ -44,11 +45,11 @@ in stdenv.mkDerivation rec { pname = "gnome-software"; - version = "43.beta"; + version = "43.rc"; src = fetchurl { url = "mirror://gnome/sources/gnome-software/${lib.versions.major version}/${pname}-${version}.tar.xz"; - sha256 = "ITO0nLxjT+s5cC/WGz+5fziQwYHvyEYmLe2FOh2O654="; + sha256 = "of6JJ7H/c6JXJTbYPCEdPrm/WP0RlSIu7LHGQuaVmzg="; }; patches = [ @@ -93,6 +94,9 @@ stdenv.mkDerivation rec { libxmlb malcontent libsysprof-capture + # For video screenshots + gst_all_1.gst-plugins-base + gst_all_1.gst-plugins-good ] ++ lib.optionals withFwupd [ fwupd ];