mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
22 lines
430 B
Nix
22 lines
430 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kwindowsystem
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kglobalaccel";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kconfig kcoreaddons kcrash kdbusaddons kwindowsystem qtx11extras ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kglobalaccel5"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|