mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
28 lines
412 B
Nix
28 lines
412 B
Nix
{ 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 ];
|
|
}
|