mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 06:53:01 +00:00
16 lines
210 B
Nix
16 lines
210 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtwayland,
|
|
cups,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "xdg-desktop-portal-kde";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [
|
|
qtwayland
|
|
cups
|
|
];
|
|
}
|