ce77225e21
This is the thing you want to look at.
13 lines
233 B
Nix
13 lines
233 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwayland,
|
|
pkg-config,
|
|
wayland,
|
|
wayland-protocols,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "layer-shell-qt";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtwayland wayland wayland-protocols];
|
|
}
|