nixpkgs/pkgs/applications/kde/kgeography.nix

18 lines
487 B
Nix
Raw Normal View History

2019-06-18 22:38:41 +03:00
{ mkDerivation, lib
, cmake, extra-cmake-modules, qtbase
, kconfigwidgets, kxmlgui, kcrash, kdoctools
, kitemviews
}:
mkDerivation {
2020-12-25 02:05:07 +03:00
pname = "kgeography";
2019-06-18 22:38:41 +03:00
meta = {
homepage = "https://apps.kde.org/kgeography/";
description = "Geography trainer";
2019-06-18 22:38:41 +03:00
license = with lib.licenses; [ gpl2 ];
maintainers = [ lib.maintainers.globin ];
};
nativeBuildInputs = [ cmake extra-cmake-modules ];
buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];
}