forked from mirrors/nixpkgs
e1aa8a713b
I am automatically a maintainer of all packages in the set, so there is not reason to mention me explicitly as the maintainer of every individual package.
20 lines
485 B
Nix
20 lines
485 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kconfigwidgets, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews,
|
|
kpackage, kservice, kxmlgui, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcmutils";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons kdeclarative ki18n kiconthemes kitemviews kpackage kxmlgui
|
|
qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ kconfigwidgets kservice ];
|
|
patches = [
|
|
./0001-kcmutils-follow-symlinks.patch
|
|
];
|
|
}
|