anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / kde / marble.nix
blob78fc52996dc51934fa06864283425469e182ffbb
1 { mkDerivation, lib
2 , extra-cmake-modules, kdoctools
3 , qtscript, qtsvg, qtquickcontrols, qtwebengine
4 , krunner, shared-mime-info, kparts, knewstuff
5 , gpsd, perl, protobuf_21
6 }:
8 mkDerivation {
9   pname = "marble";
10   meta = {
11     homepage = "https://apps.kde.org/marble/";
12     description = "Virtual globe";
13     license = with lib.licenses; [ lgpl21 gpl3 ];
14   };
15   outputs = [ "out" "dev" ];
16   nativeBuildInputs = [ extra-cmake-modules kdoctools perl ];
17   propagatedBuildInputs = [
18     protobuf_21 qtscript qtsvg qtquickcontrols qtwebengine shared-mime-info krunner kparts
19     knewstuff gpsd
20   ];
21   preConfigure = ''
22     cmakeFlags+=" -DINCLUDE_INSTALL_DIR=''${!outputDev}/include"
23   '';