mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 12:43:52 +00:00
19 lines
532 B
Nix
19 lines
532 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, perl,
|
|
karchive, kconfig, kguiaddons, ki18n, kiconthemes, kio, kparts, libgit2,
|
|
qtscript, qtxmlpatterns, sonnet, syntax-highlighting, qtquickcontrols,
|
|
editorconfig-core-c
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "ktexteditor";
|
|
nativeBuildInputs = [ extra-cmake-modules perl ];
|
|
buildInputs = [
|
|
karchive kconfig kguiaddons ki18n kiconthemes kio libgit2 qtscript
|
|
qtxmlpatterns sonnet syntax-highlighting qtquickcontrols
|
|
editorconfig-core-c
|
|
];
|
|
propagatedBuildInputs = [ kparts ];
|
|
}
|