5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
17 lines
309 B
Nix
17 lines
309 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, qtx11extras
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdbusaddons";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras ];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/kquitapp5"
|
|
'';
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|