about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-05-22 13:49:07 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-06-18 08:44:45 -0500
commitfaf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb (patch)
tree494e37aed0ec56df26ae359a4adad7dee117420d /pkgs/development/libraries/kde-frameworks/plasma-framework.nix
parent087f20e8c66372bdba86fa309dd4e1be3f35d821 (diff)
downloadnixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar.gz
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar.bz2
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar.lz
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar.xz
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.tar.zst
nixlib-faf0d3e91d7a08a95a9dd8a7faa4d2f5ee5cb4eb.zip
kdeFrameworks: fixup inputs and outputs
- Reduce environment pollution with a separate $bin output containing programs,
  plugins, and shared data. Libraries remain in $out and are not installed into
  the environment.
- Only propagate build inputs as required.
Diffstat (limited to 'pkgs/development/libraries/kde-frameworks/plasma-framework.nix')
-rw-r--r--pkgs/development/libraries/kde-frameworks/plasma-framework.nix17
1 files changed, 10 insertions, 7 deletions
diff --git a/pkgs/development/libraries/kde-frameworks/plasma-framework.nix b/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
index f47750145b53..d3a81b50bf17 100644
--- a/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
+++ b/pkgs/development/libraries/kde-frameworks/plasma-framework.nix
@@ -1,17 +1,20 @@
-{ mkDerivation, lib, fetchurl, extra-cmake-modules, kactivities, karchive
-, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons, kdeclarative
-, kdoctools, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio
-, knotifications, kpackage, kservice, kwayland, kwindowsystem, kxmlgui
-, qtscript, qtx11extras
+{
+  mkDerivation, lib,
+  extra-cmake-modules, kdoctools,
+  kactivities, karchive, kconfig, kconfigwidgets, kcoreaddons, kdbusaddons,
+  kdeclarative, kglobalaccel, kguiaddons, ki18n, kiconthemes, kio,
+  knotifications, kpackage, kservice, kwayland, kwindowsystem, kxmlgui,
+  qtbase, qtdeclarative, qtscript, qtx11extras,
 }:
 
 mkDerivation {
   name = "plasma-framework";
   meta = { maintainers = [ lib.maintainers.ttuegel ]; };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
-  propagatedBuildInputs = [
+  buildInputs = [
     kactivities karchive kconfig kconfigwidgets kcoreaddons kdbusaddons
     kdeclarative kglobalaccel kguiaddons ki18n kiconthemes kio knotifications
-    kpackage kservice kwayland kwindowsystem kxmlgui qtscript qtx11extras
+    kwayland kwindowsystem kxmlgui qtdeclarative qtscript qtx11extras
   ];
+  propagatedBuildInputs = [ kpackage kservice qtbase ];
 }