summary refs log tree commit diff
path: root/pkgs/applications/kde/kgeography.nix
blob: c96c198cca9c6a3a7e9b30a4a7af1327f029149c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation, lib
, cmake, extra-cmake-modules, qtbase
, kconfigwidgets, kxmlgui, kcrash, kdoctools
, kitemviews
}:

mkDerivation {
  name = "kgeography";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.globin ];
  };
  nativeBuildInputs = [ cmake extra-cmake-modules ];
  buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];
}