09af15654f
The kde-5 stuff still didn't merge well. I hand-fixed what I saw, but there may be more problems.
10 lines
258 B
Nix
10 lines
258 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }:
|
|
|
|
kdeFramework {
|
|
name = "kpty";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ kcoreaddons ki18n ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|