about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/kpipewire.nix
blob: 59169cd510c82e3cc9218770613dac9f378e1111 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ mkDerivation
, extra-cmake-modules
, kwayland
, ki18n
, kcoreaddons
, plasma-wayland-protocols
, libepoxy
, ffmpeg
, mesa
, pipewire
, wayland
}:

mkDerivation {
  pname = "kpipewire";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kwayland
    ki18n
    kcoreaddons
    plasma-wayland-protocols
    ffmpeg
    mesa
    pipewire
    wayland
  ];
  propagatedBuildInputs = [ libepoxy ];
}