nixpkgs/pkgs/development/libraries/kde-frameworks-5.14/kpty.nix
2015-10-05 13:08:25 -05:00

16 lines
282 B
Nix

{ kdeFramework, lib
, extra-cmake-modules
, kcoreaddons
, ki18n
}:
kdeFramework {
name = "kpty";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ ki18n ];
propagatedBuildInputs = [ kcoreaddons ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}