1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/desktops/kde-5/applications/marble.nix

25 lines
448 B
Nix
Raw Normal View History

2016-09-04 20:29:34 +01:00
{ kdeApp, lib, kdeWrapper
, ecm, qtscript, qtsvg, qtquickcontrols
, gpsd
}:
let
unwrapped =
kdeApp {
name = "marble";
meta.license = with lib.licenses; [ lgpl21 gpl3 ];
nativeBuildInputs = [ ecm ];
propagatedBuildInputs = [
qtscript qtsvg qtquickcontrols
gpsd
];
enableParallelBuilding = true;
};
in
kdeWrapper unwrapped {
targets = [ "bin/marble-qt" ];
paths = [ unwrapped ];
}