pantheon.elementary-camera: remove unneeded inputs
Clutter support is removed in 6.0 in favor of native Gtk element from GStreamer
This commit is contained in:
parent
1be885d107
commit
cd9779b9cb
1 changed files with 22 additions and 20 deletions
|
@ -3,25 +3,24 @@
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, fetchpatch
|
, fetchpatch
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
, pkg-config
|
, appstream
|
||||||
, meson
|
|
||||||
, ninja
|
|
||||||
, vala
|
|
||||||
, desktop-file-utils
|
, desktop-file-utils
|
||||||
, python3
|
|
||||||
, gettext
|
, gettext
|
||||||
, libxml2
|
, libxml2
|
||||||
, gtk3
|
, meson
|
||||||
|
, ninja
|
||||||
|
, pkg-config
|
||||||
|
, python3
|
||||||
|
, vala
|
||||||
|
, wrapGAppsHook
|
||||||
|
, elementary-icon-theme
|
||||||
|
, glib
|
||||||
, granite
|
, granite
|
||||||
|
, gst_all_1
|
||||||
|
, gtk3
|
||||||
|
, libcanberra
|
||||||
, libgee
|
, libgee
|
||||||
, libhandy
|
, libhandy
|
||||||
, gst_all_1
|
|
||||||
, libcanberra
|
|
||||||
, clutter-gtk
|
|
||||||
, clutter-gst
|
|
||||||
, elementary-icon-theme
|
|
||||||
, appstream
|
|
||||||
, wrapGAppsHook
|
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -58,19 +57,22 @@ stdenv.mkDerivation rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
clutter-gst
|
|
||||||
clutter-gtk
|
|
||||||
elementary-icon-theme
|
elementary-icon-theme
|
||||||
|
glib
|
||||||
granite
|
granite
|
||||||
gst_all_1.gst-plugins-bad
|
|
||||||
gst_all_1.gst-plugins-base
|
|
||||||
(gst_all_1.gst-plugins-good.override { gtkSupport = true; })
|
|
||||||
gst_all_1.gstreamer
|
|
||||||
gtk3
|
gtk3
|
||||||
libcanberra
|
libcanberra
|
||||||
libgee
|
libgee
|
||||||
libhandy
|
libhandy
|
||||||
];
|
] ++ (with gst_all_1; [
|
||||||
|
gst-plugins-bad
|
||||||
|
gst-plugins-base
|
||||||
|
# gtkSupport needed for gtksink
|
||||||
|
# https://github.com/elementary/camera/issues/181
|
||||||
|
(gst-plugins-good.override { gtkSupport = true; })
|
||||||
|
gst-plugins-ugly
|
||||||
|
gstreamer
|
||||||
|
]);
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
chmod +x meson/post_install.py
|
chmod +x meson/post_install.py
|
||||||
|
|
Loading…
Reference in a new issue