mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:36:27 +00:00
12 lines
267 B
Nix
12 lines
267 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, qttools, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kwindowsystem";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules qttools ];
|
|
propagatedBuildInputs = [ qtx11extras ];
|
|
}
|