2017-05-16 15:56:41 +00:00
|
|
|
{ mkDerivation, lib
|
2017-05-17 19:26:11 +00:00
|
|
|
, extra-cmake-modules, kdoctools
|
2020-08-06 21:37:34 +00:00
|
|
|
, qtscript, qtsvg, qtquickcontrols, qtwebengine
|
2018-02-25 02:23:58 +00:00
|
|
|
, krunner, shared-mime-info, kparts, knewstuff
|
2023-10-06 03:27:27 +00:00
|
|
|
, gpsd, perl, protobuf_21
|
2016-09-04 19:29:34 +00:00
|
|
|
}:
|
|
|
|
|
2017-05-16 15:56:41 +00:00
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "marble";
|
2021-09-18 09:48:23 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "https://apps.kde.org/marble/";
|
|
|
|
description = "Virtual globe";
|
|
|
|
license = with lib.licenses; [ lgpl21 gpl3 ];
|
|
|
|
};
|
2018-10-08 19:20:34 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2017-05-17 19:26:11 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools perl ];
|
2017-05-16 15:56:41 +00:00
|
|
|
propagatedBuildInputs = [
|
2023-10-06 03:27:27 +00:00
|
|
|
protobuf_21 qtscript qtsvg qtquickcontrols qtwebengine shared-mime-info krunner kparts
|
2017-05-16 15:56:41 +00:00
|
|
|
knewstuff gpsd
|
|
|
|
];
|
2018-10-20 22:17:22 +00:00
|
|
|
preConfigure = ''
|
|
|
|
cmakeFlags+=" -DINCLUDE_INSTALL_DIR=''${!outputDev}/include"
|
|
|
|
'';
|
2016-09-04 19:29:34 +00:00
|
|
|
}
|