mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-15 01:15:51 +00:00
12 lines
179 B
Nix
12 lines
179 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwayland,
|
|
pkg-config,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "layer-shell-qt";
|
|
|
|
extraNativeBuildInputs = [ pkg-config ];
|
|
extraBuildInputs = [ qtwayland ];
|
|
}
|