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
|
||
|
];
|
||
|
}
|