about summary refs log tree commit diff
path: root/pkgs/development/libraries/wxwidgets
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-08-23 22:42:58 +0200
committerJan Tojnar <jtojnar@gmail.com>2020-08-24 01:23:01 +0200
commit55a7a01e808654c8f251ce177ba4e5e7c2b0eb78 (patch)
treec31a339aeaebc91f8d61b03fae3f70e58bfcf075 /pkgs/development/libraries/wxwidgets
parentc59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38 (diff)
downloadnixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar.gz
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar.bz2
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar.lz
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar.xz
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.tar.zst
nixlib-55a7a01e808654c8f251ce177ba4e5e7c2b0eb78.zip
wxGTK28: drop ancient deps
The many-years abandoned GStreamer 0.10 branch no longer builds so let's remove it. Hopefully nothing used it these days.

GConf has been abandoned for years too and would not work without user running the daemon.
Diffstat (limited to 'pkgs/development/libraries/wxwidgets')
-rw-r--r--pkgs/development/libraries/wxwidgets/2.8/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/wxwidgets/2.8/default.nix b/pkgs/development/libraries/wxwidgets/2.8/default.nix
index 98cf0d58479b..deb7d19c0de1 100644
--- a/pkgs/development/libraries/wxwidgets/2.8/default.nix
+++ b/pkgs/development/libraries/wxwidgets/2.8/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, pkgconfig, gtk2, libXinerama, libSM, libXxf86vm, xorgproto
-, gstreamer, gst-plugins-base, GConf, libX11, cairo
+, libX11, cairo
 , libGLSupported ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms
 , withMesa ? stdenv.lib.elem stdenv.hostPlatform.system stdenv.lib.platforms.mesaPlatforms
 , libGLU ? null, libGL ? null
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     sha256 = "1l1w4i113csv3bd5r8ybyj0qpxdq83lj6jrc5p7cc10mkwyiagqz";
   };
 
-  buildInputs = [ gtk2 libXinerama libSM libXxf86vm xorgproto gstreamer gst-plugins-base GConf libX11 cairo ]
+  buildInputs = [ gtk2 libXinerama libSM libXxf86vm xorgproto libX11 cairo ]
     ++ optional withMesa libGLU;
 
   nativeBuildInputs = [ pkgconfig ];