biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / kde / kgeography.nix
blob9e55ed5879d8c44ef32d814c556776c7667ca68b
1 { mkDerivation, lib
2 , cmake, extra-cmake-modules, qtbase
3 , kconfigwidgets, kxmlgui, kcrash, kdoctools
4 , kitemviews
5 }:
7 mkDerivation {
8   pname = "kgeography";
9   meta = {
10     homepage = "https://apps.kde.org/kgeography/";
11     description = "Geography trainer";
12     mainProgram = "kgeography";
13     license = with lib.licenses; [ gpl2 ];
14     maintainers = [ lib.maintainers.globin ];
15   };
16   nativeBuildInputs = [ cmake extra-cmake-modules ];
17   buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];