1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-03-06 23:31:34 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kitemviews.nix

11 lines
243 B
Nix
Raw Normal View History

2016-04-21 16:32:21 +01:00
{ kdeFramework, lib
, extra-cmake-modules, qtbase, qttools
2016-04-21 16:32:21 +01:00
}:
kdeFramework {
name = "kitemviews";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules qttools ];
buildInputs = [ qtbase ];
2016-04-21 16:32:21 +01:00
}