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.
21 lines
592 B
Nix
21 lines
592 B
Nix
{
|
|
mkDerivation,
|
|
bison, extra-cmake-modules, flex,
|
|
kconfig, kcoreaddons, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem,
|
|
qtbase, shared-mime-info,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kservice";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedNativeBuildInputs = [ bison flex ];
|
|
buildInputs = [
|
|
kcrash kdbusaddons ki18n kwindowsystem qtbase
|
|
];
|
|
propagatedBuildInputs = [ kconfig kcoreaddons ];
|
|
propagatedUserEnvPkgs = [ shared-mime-info ]; # for kbuildsycoca5
|
|
patches = [
|
|
./qdiriterator-follow-symlinks.patch
|
|
./no-canonicalize-path.patch
|
|
];
|
|
}
|