From 8be4bd7416ca977a6b8513957513355f01c397cc Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Sat, 25 Feb 2017 14:34:51 -0600 Subject: kdeApplications: Move out of desktops/kde-5 - There is no such thing as KDE 5 --- pkgs/applications/kde/marble.nix | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 pkgs/applications/kde/marble.nix (limited to 'pkgs/applications/kde/marble.nix') diff --git a/pkgs/applications/kde/marble.nix b/pkgs/applications/kde/marble.nix new file mode 100644 index 00000000000..5b8a82dbf09 --- /dev/null +++ b/pkgs/applications/kde/marble.nix @@ -0,0 +1,25 @@ +{ 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 ]; +} -- cgit 1.4.1