nixpkgs/pkgs/applications/kde/marble.nix

17 lines
441 B
Nix
Raw Normal View History

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