1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/applications/kde/marble.nix

17 lines
470 B
Nix
Raw Normal View History

2017-05-16 11:56:41 -04:00
{ mkDerivation, lib
, extra-cmake-modules, kdoctools, wrapGAppsHook
2017-04-21 10:45:54 -04:00
, qtscript, qtsvg, qtquickcontrols, qtwebkit
, krunner, shared_mime_info, kparts, knewstuff
, gpsd, perl
2016-09-04 15:29:34 -04:00
}:
2017-05-16 11:56:41 -04: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 15:29:34 -04:00
}