lol

Merge pull request #207134 from SuperSandro2000/nox-pipewire-mpv

authored by

Sandro and committed by
GitHub
6dcdffe4 3cd6cd41

+6 -3
+5 -1
nixos/modules/config/no-x-libs.nix
··· 33 33 ffmpeg_4 = super.ffmpeg_4-headless; 34 34 ffmpeg_5 = super.ffmpeg_5-headless; 35 35 gobject-introspection = super.gobject-introspection.override { x11Support = false; }; 36 + gst_all_1 = super.gst_all_1 // { 37 + gst-plugins-base = super.gst_all_1.gst-plugins-base.override { enableX11 = false; }; 38 + }; 36 39 gpsd = super.gpsd.override { guiSupport = false; }; 37 40 imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; }; 38 41 imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; }; 39 - libextractor = super.libextractor.override { gstreamerSupport = false; gtkSupport = false; }; 42 + libextractor = super.libextractor.override { gtkSupport = false; }; 40 43 libva = super.libva-minimal; 41 44 limesuite = super.limesuite.override { withGui = false; }; 45 + mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; }; 42 46 msmtp = super.msmtp.override { withKeyring = false; }; 43 47 networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; }; 44 48 networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
+1 -2
pkgs/development/libraries/gstreamer/base/default.nix
··· 79 79 libjpeg 80 80 tremor 81 81 libGL 82 + pango 82 83 ] ++ lib.optionals (!stdenv.isDarwin) [ 83 84 libvisual 84 85 ] ++ lib.optionals stdenv.isDarwin [ 85 - pango 86 86 OpenGL 87 87 ] ++ lib.optionals enableAlsa [ 88 88 alsa-lib 89 89 ] ++ lib.optionals enableX11 [ 90 90 libXext 91 91 libXv 92 - pango 93 92 ] ++ lib.optionals enableWayland [ 94 93 wayland 95 94 wayland-protocols