summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@mailbox.org>2017-06-21 08:45:18 -0500
committerThomas Tuegel <ttuegel@mailbox.org>2017-08-21 06:51:08 -0500
commit79a882da54819cd31f68b1eb2f22c0cb4d65d8de (patch)
treee9d01c517e89cc0291d5ba3fb3bee5bf6485367a
parentda47cdfffb0c795ac38cb2ddf59c2cc1d4b09910 (diff)
downloadnixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar.gz
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar.bz2
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar.lz
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar.xz
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.tar.zst
nixpkgs-79a882da54819cd31f68b1eb2f22c0cb4d65d8de.zip
kcachegrind: fixup inputs and outputs
-rw-r--r--pkgs/applications/kde/kcachegrind.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/applications/kde/kcachegrind.nix b/pkgs/applications/kde/kcachegrind.nix
index 19e01aeebe9..91faaef623a 100644
--- a/pkgs/applications/kde/kcachegrind.nix
+++ b/pkgs/applications/kde/kcachegrind.nix
@@ -1,8 +1,7 @@
 {
   mkDerivation, lib,
   extra-cmake-modules, kdoctools,
-  kio, ki18n, karchive, qttools,
-  perl, python, php
+  karchive, ki18n, kio, perl, python, php, qttools,
 }:
 
 mkDerivation {
@@ -12,6 +11,5 @@ mkDerivation {
     maintainers = with lib.maintainers; [ orivej ];
   };
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
-  propagatedBuildInputs = [ kio ];
-  buildInputs = [ perl python php ki18n karchive qttools ];
+  buildInputs = [ karchive ki18n kio perl python php qttools ];
 }