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