nixpkgs/pkgs/desktops/plasma-5/kpipewire.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
425 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules,
kwayland,
ki18n,
kcoreaddons,
plasma-wayland-protocols,
libepoxy,
ffmpeg,
mesa,
pipewire,
wayland,
2022-09-15 16:23:51 +00:00
}:
mkDerivation {
pname = "kpipewire";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
kwayland
ki18n
kcoreaddons
plasma-wayland-protocols
ffmpeg
mesa
pipewire
wayland
2022-09-15 16:23:51 +00:00
];
2023-03-18 08:20:24 +00:00
propagatedBuildInputs = [ libepoxy ];
2022-09-15 16:23:51 +00:00
}