Skip to content

Commit b0f1cfa

Browse files
committed
gnome-clocks: add missing gstreamer dependency
needed for alarms
1 parent ea6879f commit b0f1cfa

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed

pkgs/desktops/gnome/apps/gnome-clocks/default.nix

Lines changed: 19 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
gnome,
2121
gdk-pixbuf,
2222
geoclue2,
23+
gst_all_1,
2324
libgweather,
2425
libadwaita,
2526
}:
@@ -45,17 +46,24 @@ stdenv.mkDerivation (finalAttrs: {
4546
libxml2
4647
];
4748

48-
buildInputs = [
49-
gtk4
50-
glib
51-
gsettings-desktop-schemas
52-
gdk-pixbuf
53-
gnome-desktop
54-
geocode-glib_2
55-
geoclue2
56-
libgweather
57-
libadwaita
58-
];
49+
buildInputs =
50+
[
51+
gtk4
52+
glib
53+
gsettings-desktop-schemas
54+
gdk-pixbuf
55+
gnome-desktop
56+
geocode-glib_2
57+
geoclue2
58+
libgweather
59+
libadwaita
60+
]
61+
++ (with gst_all_1; [
62+
# GStreamer plugins needed for Alarms
63+
gstreamer
64+
gst-plugins-base
65+
gst-plugins-good
66+
]);
5967

6068
preFixup = ''
6169
gappsWrapperArgs+=(

0 commit comments

Comments
 (0)