mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 22:04:20 +00:00
ce77225e21
This is the thing you want to look at.
15 lines
243 B
Nix
15 lines
243 B
Nix
{
|
|
mkKdeDerivation,
|
|
qttools,
|
|
qtdeclarative,
|
|
qtwayland,
|
|
pkg-config,
|
|
wayland,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kwindowsystem";
|
|
|
|
extraNativeBuildInputs = [qttools pkg-config];
|
|
extraBuildInputs = [qtdeclarative qtwayland wayland];
|
|
}
|