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

mkDerivation {
  pname = "kgeography";
  meta = {
    homepage = "https://apps.kde.org/kgeography/";
    description = "Geography trainer";
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.globin ];
  };
  nativeBuildInputs = [ cmake extra-cmake-modules ];
  buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];
}