mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
17 lines
392 B
Nix
17 lines
392 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules,
|
|
kconfig, kcoreaddons, kcrash, kdbusaddons, kservice, kwindowsystem,
|
|
qtbase, qttools, qtx11extras,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kglobalaccel";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kconfig kcoreaddons kcrash kdbusaddons kservice kwindowsystem qttools
|
|
qtx11extras
|
|
];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|