mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
3bd85fa720
The patch is already included in the current source.
It's PR #140523 adding the patch and PR #141127 updating KDE apps;
they missed each other (different target branches, different files).
This reverts commit e08f549599
.
25 lines
663 B
Nix
25 lines
663 B
Nix
{ mkDerivation, lib
|
|
, extra-cmake-modules, kdoctools
|
|
, qtscript, qtsvg, qtquickcontrols, qtwebengine
|
|
, krunner, shared-mime-info, kparts, knewstuff
|
|
, gpsd, perl
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "marble";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/marble/";
|
|
description = "Virtual globe";
|
|
license = with lib.licenses; [ lgpl21 gpl3 ];
|
|
};
|
|
outputs = [ "out" "dev" ];
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools perl ];
|
|
propagatedBuildInputs = [
|
|
qtscript qtsvg qtquickcontrols qtwebengine shared-mime-info krunner kparts
|
|
knewstuff gpsd
|
|
];
|
|
preConfigure = ''
|
|
cmakeFlags+=" -DINCLUDE_INSTALL_DIR=''${!outputDev}/include"
|
|
'';
|
|
}
|