5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
16 lines
282 B
Nix
16 lines
282 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kcoreaddons
|
|
, ki18n
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kpty";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ ki18n ];
|
|
propagatedBuildInputs = [ kcoreaddons ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|