79921889a0
Nix expressions provide all the features that Quilt series files have, so using those instead is pointless. Also, lib.readPathsFromFile (the function used to read series files) has the following warning: > NOTE: This function is not performant and should be avoided. This also removes some orphaned series files, and unused references to copyPathsToStore (which were probably missed in previous commits where calls to lib.readPathsFromFile were removed)
21 lines
547 B
Nix
21 lines
547 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kconfigwidgets, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews,
|
|
kpackage, kservice, kxmlgui, qtdeclarative,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kcmutils";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons kdeclarative ki18n kiconthemes kitemviews kpackage kxmlgui
|
|
qtdeclarative
|
|
];
|
|
propagatedBuildInputs = [ kconfigwidgets kservice ];
|
|
patches = [
|
|
./0001-kcmutils-follow-symlinks.patch
|
|
];
|
|
}
|