cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
34 lines
450 B
Nix
34 lines
450 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kconfig
|
|
, kio
|
|
, ki18n
|
|
, kservice
|
|
, kfilemetadata
|
|
, baloo
|
|
, kdelibs4support
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "baloo-widgets";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kconfig
|
|
kio
|
|
ki18n
|
|
kservice
|
|
kfilemetadata
|
|
baloo
|
|
kdelibs4support
|
|
];
|
|
meta = {
|
|
license = [ lib.licenses.lgpl21 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|