nixpkgs/pkgs/applications/kde/marble.nix

17 lines
470 B
Nix
Raw Normal View History

2017-05-16 15:56:41 +00:00
{ mkDerivation, lib
, extra-cmake-modules, kdoctools, wrapGAppsHook
2017-04-21 14:45:54 +00:00
, qtscript, qtsvg, qtquickcontrols, qtwebkit
, krunner, shared_mime_info, kparts, knewstuff
, gpsd, perl
2016-09-04 19:29:34 +00:00
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
name = "marble";
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
nativeBuildInputs = [ extra-cmake-modules kdoctools perl wrapGAppsHook ];
propagatedBuildInputs = [
qtscript qtsvg qtquickcontrols qtwebkit shared_mime_info krunner kparts
knewstuff gpsd
];
2016-09-04 19:29:34 +00:00
}