mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 05:43:50 +03:00
5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
18 lines
315 B
Nix
18 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 ];
|
|
};
|
|
}
|