summary refs log tree commit diff
path: root/pkgs/desktops/pantheon
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2022-01-30 11:14:01 +0800
committerBobby Rong <rjl931189261@126.com>2022-01-30 11:14:01 +0800
commit1cd734f2d3aa1331fbed06729295ab89386a4ae9 (patch)
tree6493264fd6744c529da50b5f34f84cc74fc5c635 /pkgs/desktops/pantheon
parent422471d1b064839879d03dcfa9b8b3530c5be744 (diff)
downloadnixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar.gz
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar.bz2
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar.lz
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar.xz
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.tar.zst
nixpkgs-1cd734f2d3aa1331fbed06729295ab89386a4ae9.zip
pantheon.elementary-photos: remove unneeded inputs
Looks like scour is no needed since 2.7.x.
Diffstat (limited to 'pkgs/desktops/pantheon')
-rw-r--r--pkgs/desktops/pantheon/apps/elementary-photos/default.nix19
1 files changed, 8 insertions, 11 deletions
diff --git a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
index 12f6242eaaf..55a42f80644 100644
--- a/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
+++ b/pkgs/desktops/pantheon/apps/elementary-photos/default.nix
@@ -8,7 +8,6 @@
 , vala
 , desktop-file-utils
 , gtk3
-, libaccounts-glib
 , libexif
 , libgee
 , libhandy
@@ -24,7 +23,6 @@
 , libsoup
 , sqlite
 , python3
-, scour
 , webkitgtk
 , libwebp
 , appstream
@@ -54,19 +52,13 @@ stdenv.mkDerivation rec {
     wrapGAppsHook
   ];
 
-  buildInputs = with gst_all_1; [
+  buildInputs = [
     elementary-icon-theme
     geocode-glib
     gexiv2
     granite
-    gst-plugins-bad
-    gst-plugins-base
-    gst-plugins-good
-    gst-plugins-ugly
-    gstreamer
     gtk3
     json-glib
-    libaccounts-glib
     libexif
     libgee
     libgphoto2
@@ -76,10 +68,15 @@ stdenv.mkDerivation rec {
     librest
     libsoup
     libwebp
-    scour
     sqlite
     webkitgtk
-  ];
+  ] ++ (with gst_all_1; [
+    gst-plugins-bad
+    gst-plugins-base
+    gst-plugins-good
+    gst-plugins-ugly
+    gstreamer
+  ]);
 
   mesonFlags = [
     "-Dplugins=false"