nixpkgs/pkgs/applications/kde/marble.nix
Vladimír Čunát 3bd85fa720
Revert "marble: fix build with gpsd 3.23.1"
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.
2021-10-19 08:33:13 +02:00

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"
'';
}