Skip to content

Commit 5b0ed68

Browse files
andrevmatosalyssais
authored andcommitted
qemu: add pipewire support (8.1 feature)
1 parent 315bba7 commit 5b0ed68

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

pkgs/applications/virtualization/qemu/default.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{ lib, stdenv, fetchurl, fetchpatch, python3Packages, zlib, pkg-config, glib, buildPackages
22
, pixman, vde2, alsa-lib, texinfo, flex
33
, bison, lzo, snappy, libaio, libtasn1, gnutls, nettle, curl, ninja, meson, sigtool
4-
, makeWrapper, runtimeShell, removeReferencesTo
4+
, makeWrapper, removeReferencesTo
55
, attr, libcap, libcap_ng, socat, libslirp
66
, CoreServices, Cocoa, Hypervisor, rez, setfile, vmnet
77
, guestAgentSupport ? with stdenv.hostPlatform; isLinux || isNetBSD || isOpenBSD || isSunOS || isWindows
88
, numaSupport ? stdenv.isLinux && !stdenv.isAarch32, numactl
99
, seccompSupport ? stdenv.isLinux, libseccomp
1010
, alsaSupport ? lib.hasSuffix "linux" stdenv.hostPlatform.system && !nixosTestRunner
1111
, pulseSupport ? !stdenv.isDarwin && !nixosTestRunner, libpulseaudio
12+
, pipewireSupport ? !stdenv.isDarwin && !nixosTestRunner, pipewire
1213
, sdlSupport ? !stdenv.isDarwin && !nixosTestRunner, SDL2, SDL2_image
1314
, jackSupport ? !stdenv.isDarwin && !nixosTestRunner, libjack2
1415
, gtkSupport ? !stdenv.isDarwin && !xenSupport && !nixosTestRunner, gtk3, gettext, vte, wrapGAppsHook
@@ -78,6 +79,7 @@ stdenv.mkDerivation (finalAttrs: {
7879
++ lib.optionals numaSupport [ numactl ]
7980
++ lib.optionals alsaSupport [ alsa-lib ]
8081
++ lib.optionals pulseSupport [ libpulseaudio ]
82+
++ lib.optionals pipewireSupport [ pipewire ]
8183
++ lib.optionals sdlSupport [ SDL2 SDL2_image ]
8284
++ lib.optionals jackSupport [ libjack2 ]
8385
++ lib.optionals gtkSupport [ gtk3 gettext vte ]

0 commit comments

Comments
 (0)