12 lines
179 B
Nix
12 lines
179 B
Nix
|
|
{
|
||
|
|
mkKdeDerivation,
|
||
|
|
qtwayland,
|
||
|
|
pkg-config,
|
||
|
|
}:
|
||
|
|
mkKdeDerivation {
|
||
|
|
pname = "layer-shell-qt";
|
||
|
|
|
||
|
|
extraNativeBuildInputs = [ pkg-config ];
|
||
|
|
extraBuildInputs = [ qtwayland ];
|
||
|
|
}
|