nixpkgs/pkgs/applications/kde/marble.nix
Thomas Tuegel 8be4bd7416
kdeApplications: Move out of desktops/kde-5
- There is no such thing as KDE 5
2017-02-27 11:49:30 -06:00

26 lines
459 B
Nix

{ 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 {
inherit unwrapped;
targets = [ "bin/marble-qt" ];
paths = [ unwrapped ];
}