mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-11 06:34:13 +00:00
![Vladimír Čunát](/assets/img/avatar_default.png)
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
14 lines
311 B
Nix
14 lines
311 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n, kpty
|
|
, kservice
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kdesu";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ kcoreaddons kservice ];
|
|
propagatedBuildInputs = [ ki18n kpty ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|