mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 15:44:20 +00:00
20 lines
486 B
Nix
20 lines
486 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
kconfigwidgets, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews,
|
|
kpackage, kservice, kxmlgui, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcmutils";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons kdeclarative ki18n kiconthemes kitemviews kpackage kxmlgui
|
|
qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ kconfigwidgets kservice ];
|
|
patches = [
|
|
./0001-kcmutils-follow-symlinks.patch
|
|
];
|
|
}
|