nixpkgs/pkgs/applications/kde/kgeography.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
487 B
Nix
Raw Normal View History

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