mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-09 12:05:50 +03:00
Merge pull request #207134 from SuperSandro2000/nox-pipewire-mpv
This commit is contained in:
commit
6dcdffe4d6
2 changed files with 6 additions and 3 deletions
|
@ -33,12 +33,16 @@ with lib;
|
||||||
ffmpeg_4 = super.ffmpeg_4-headless;
|
ffmpeg_4 = super.ffmpeg_4-headless;
|
||||||
ffmpeg_5 = super.ffmpeg_5-headless;
|
ffmpeg_5 = super.ffmpeg_5-headless;
|
||||||
gobject-introspection = super.gobject-introspection.override { x11Support = false; };
|
gobject-introspection = super.gobject-introspection.override { x11Support = false; };
|
||||||
|
gst_all_1 = super.gst_all_1 // {
|
||||||
|
gst-plugins-base = super.gst_all_1.gst-plugins-base.override { enableX11 = false; };
|
||||||
|
};
|
||||||
gpsd = super.gpsd.override { guiSupport = false; };
|
gpsd = super.gpsd.override { guiSupport = false; };
|
||||||
imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; };
|
imagemagick = super.imagemagick.override { libX11Support = false; libXtSupport = false; };
|
||||||
imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; };
|
imagemagickBig = super.imagemagickBig.override { libX11Support = false; libXtSupport = false; };
|
||||||
libextractor = super.libextractor.override { gstreamerSupport = false; gtkSupport = false; };
|
libextractor = super.libextractor.override { gtkSupport = false; };
|
||||||
libva = super.libva-minimal;
|
libva = super.libva-minimal;
|
||||||
limesuite = super.limesuite.override { withGui = false; };
|
limesuite = super.limesuite.override { withGui = false; };
|
||||||
|
mpv-unwrapped = super.mpv-unwrapped.override { sdl2Support = false; x11Support = false; };
|
||||||
msmtp = super.msmtp.override { withKeyring = false; };
|
msmtp = super.msmtp.override { withKeyring = false; };
|
||||||
networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; };
|
networkmanager-fortisslvpn = super.networkmanager-fortisslvpn.override { withGnome = false; };
|
||||||
networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
|
networkmanager-iodine = super.networkmanager-iodine.override { withGnome = false; };
|
||||||
|
|
|
@ -79,17 +79,16 @@ stdenv.mkDerivation rec {
|
||||||
libjpeg
|
libjpeg
|
||||||
tremor
|
tremor
|
||||||
libGL
|
libGL
|
||||||
|
pango
|
||||||
] ++ lib.optionals (!stdenv.isDarwin) [
|
] ++ lib.optionals (!stdenv.isDarwin) [
|
||||||
libvisual
|
libvisual
|
||||||
] ++ lib.optionals stdenv.isDarwin [
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
pango
|
|
||||||
OpenGL
|
OpenGL
|
||||||
] ++ lib.optionals enableAlsa [
|
] ++ lib.optionals enableAlsa [
|
||||||
alsa-lib
|
alsa-lib
|
||||||
] ++ lib.optionals enableX11 [
|
] ++ lib.optionals enableX11 [
|
||||||
libXext
|
libXext
|
||||||
libXv
|
libXv
|
||||||
pango
|
|
||||||
] ++ lib.optionals enableWayland [
|
] ++ lib.optionals enableWayland [
|
||||||
wayland
|
wayland
|
||||||
wayland-protocols
|
wayland-protocols
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue