kdeApplications.kgeography: init
This commit is contained in:
parent
2c96ca1c83
commit
3598d506ed
@ -109,6 +109,7 @@ let
|
||||
kdialog = callPackage ./kdialog.nix {};
|
||||
keditbookmarks = callPackage ./keditbookmarks.nix {};
|
||||
kfind = callPackage ./kfind.nix {};
|
||||
kgeography = callPackage ./kgeography.nix {};
|
||||
kget = callPackage ./kget.nix {};
|
||||
kgpg = callPackage ./kgpg.nix {};
|
||||
khelpcenter = callPackage ./khelpcenter.nix {};
|
||||
|
15
pkgs/applications/kde/kgeography.nix
Normal file
15
pkgs/applications/kde/kgeography.nix
Normal file
@ -0,0 +1,15 @@
|
||||
{ mkDerivation, lib
|
||||
, cmake, extra-cmake-modules, qtbase
|
||||
, kconfigwidgets, kxmlgui, kcrash, kdoctools
|
||||
, kitemviews
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "kgeography";
|
||||
meta = {
|
||||
license = with lib.licenses; [ gpl2 ];
|
||||
maintainers = [ lib.maintainers.globin ];
|
||||
};
|
||||
nativeBuildInputs = [ cmake extra-cmake-modules ];
|
||||
buildInputs = [ qtbase kconfigwidgets kxmlgui kcrash kdoctools kitemviews ];
|
||||
}
|
Loading…
Reference in New Issue
Block a user