cf5ed04f49
Provide a globally unique name (kdeApp) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
30 lines
396 B
Nix
30 lines
396 B
Nix
{ kdeApp
|
|
, lib
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kxmlgui
|
|
, ki18n
|
|
, kio
|
|
, kdelibs4support
|
|
, dolphin
|
|
}:
|
|
|
|
kdeApp {
|
|
name = "dolphin-plugins";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kxmlgui
|
|
ki18n
|
|
kio
|
|
kdelibs4support
|
|
dolphin
|
|
];
|
|
meta = {
|
|
license = [ lib.licenses.gpl2 ];
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|