mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
20 lines
646 B
Nix
20 lines
646 B
Nix
{
|
|
mkDerivation, lib, copyPathsToStore,
|
|
bison, extra-cmake-modules, flex,
|
|
kconfig, kcoreaddons, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem,
|
|
qtbase, shared_mime_info,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kservice";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedNativeBuildInputs = [ bison flex ];
|
|
buildInputs = [
|
|
kcrash kdbusaddons ki18n kwindowsystem qtbase
|
|
];
|
|
propagatedBuildInputs = [ kconfig kcoreaddons ];
|
|
propagatedUserEnvPkgs = [ shared_mime_info ]; # for kbuildsycoca5
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
}
|