From 1ebcb5f67fc6762ed1210d1302e7c23fcf6b4b49 Mon Sep 17 00:00:00 2001 From: Thomas Tuegel Date: Thu, 28 Apr 2016 13:08:37 -0500 Subject: [PATCH] kde5.filelight: propagate all buildInputs --- .../kde-5/applications-16.04/filelight.nix | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/pkgs/desktops/kde-5/applications-16.04/filelight.nix b/pkgs/desktops/kde-5/applications-16.04/filelight.nix index df5e097a540..5ac101fa501 100644 --- a/pkgs/desktops/kde-5/applications-16.04/filelight.nix +++ b/pkgs/desktops/kde-5/applications-16.04/filelight.nix @@ -12,24 +12,19 @@ kdeApp { name = "filelight"; + meta = { + license = with lib.licenses; [ gpl2 ]; + maintainers = with lib.maintainers; [ fridh vcunat ]; + }; nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ]; - buildInputs = [ - kio - kparts - qtscript - solid - kxmlgui + propagatedBuildInputs = [ + kio kparts qtscript solid kxmlgui ]; - postInstall = '' wrapQtProgram "$out/bin/filelight" ''; - meta = { - license = with lib.licenses; [ gpl2 ]; - maintainers = with lib.maintainers; [ fridh vcunat ]; - }; }