about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kgeography.nix
blob: 9e55ed5879d8c44ef32d814c556776c7667ca68b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ 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";
    mainProgram = "kgeography";
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.globin ];
  };
  nativeBuildInputs = [ cmake extra-cmake-modules ];
  buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];
}