9 lines
252 B
Nix
9 lines
252 B
Nix
{ kdeFramework, lib, extra-cmake-modules, kcoreaddons, ki18n }:
|
|
|
|
kdeFramework {
|
|
name = "kpty";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ kcoreaddons ki18n ];
|
|
}
|