ce77225e21
This is the thing you want to look at.
14 lines
254 B
Nix
14 lines
254 B
Nix
{
|
|
mkKdeDerivation,
|
|
pkg-config,
|
|
qtwayland,
|
|
wayland,
|
|
wayland-protocols,
|
|
cups,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "xdg-desktop-portal-kde";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtwayland wayland wayland-protocols cups];
|
|
}
|