mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
18 lines
546 B
Nix
18 lines
546 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, perl,
|
|
karchive, kconfig, kguiaddons, ki18n, kiconthemes, kio, kparts, libgit2,
|
|
qtscript, qtxmlpatterns, sonnet, syntax-highlighting, qtquickcontrols
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "ktexteditor";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules perl ];
|
|
buildInputs = [
|
|
karchive kconfig kguiaddons ki18n kiconthemes kio libgit2 qtscript
|
|
qtxmlpatterns sonnet syntax-highlighting qtquickcontrols
|
|
];
|
|
propagatedBuildInputs = [ kparts ];
|
|
}
|