tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kcachegrind: fixup inputs and outputs
Thomas Tuegel
8 years ago
79a882da
da47cdff
+2
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
kde
kcachegrind.nix
+2
-4
pkgs/applications/kde/kcachegrind.nix
···
1
{
2
mkDerivation, lib,
3
extra-cmake-modules, kdoctools,
4
-
kio, ki18n, karchive, qttools,
5
-
perl, python, php
6
}:
7
8
mkDerivation {
···
12
maintainers = with lib.maintainers; [ orivej ];
13
};
14
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
15
-
propagatedBuildInputs = [ kio ];
16
-
buildInputs = [ perl python php ki18n karchive qttools ];
17
}
···
1
{
2
mkDerivation, lib,
3
extra-cmake-modules, kdoctools,
4
+
karchive, ki18n, kio, perl, python, php, qttools,
0
5
}:
6
7
mkDerivation {
···
11
maintainers = with lib.maintainers; [ orivej ];
12
};
13
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
14
+
buildInputs = [ karchive ki18n kio perl python php qttools ];
0
15
}