nixpkgs/pkgs/kde/plasma/xdg-desktop-portal-kde/default.nix
2024-09-20 08:54:48 +03:00

16 lines
210 B
Nix

{
mkKdeDerivation,
pkg-config,
qtwayland,
cups,
}:
mkKdeDerivation {
pname = "xdg-desktop-portal-kde";
extraNativeBuildInputs = [ pkg-config ];
extraBuildInputs = [
qtwayland
cups
];
}