5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
18 lines
304 B
Nix
18 lines
304 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kcompletion
|
|
, kconfig
|
|
, ki18n
|
|
, kio
|
|
, phonon
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "knotifyconfig";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcompletion kconfig ki18n kio phonon ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|