2017-06-02 18:49:52 +03:00
|
|
|
{ mkDerivation
|
2017-02-25 18:44:01 +03:00
|
|
|
, lib
|
2018-10-24 21:53:06 +03:00
|
|
|
, fetchurl
|
2017-02-26 15:49:15 +03:00
|
|
|
, extra-cmake-modules
|
2017-02-25 18:44:01 +03:00
|
|
|
, kdoctools
|
2017-05-16 18:56:41 +03:00
|
|
|
, wrapGAppsHook
|
2017-02-25 18:44:01 +03:00
|
|
|
, qtscript
|
|
|
|
, kconfig
|
|
|
|
, kcrash
|
|
|
|
, kdbusaddons
|
|
|
|
, kdelibs4support
|
|
|
|
, kguiaddons
|
|
|
|
, kiconthemes
|
|
|
|
, kinit
|
|
|
|
, khtml
|
|
|
|
, konsole
|
|
|
|
, kparts
|
|
|
|
, ktexteditor
|
|
|
|
, kwindowsystem
|
2017-04-23 19:00:40 +03:00
|
|
|
, okular
|
2017-02-25 18:44:01 +03:00
|
|
|
, poppler
|
2015-09-27 18:11:01 +03:00
|
|
|
}:
|
2011-10-04 15:12:11 +04:00
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
mkDerivation rec {
|
2018-10-24 21:53:06 +03:00
|
|
|
name = "kile-2.9.92";
|
2011-10-04 15:12:11 +04:00
|
|
|
|
2018-10-24 21:53:06 +03:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/kile/${name}.tar.bz2";
|
|
|
|
sha256 = "177372dc25b1d109e037a7dbfc64b5dab2efe538320c87f4a8ceada21e9097f2";
|
2011-10-04 15:12:11 +04:00
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
};
|
2011-10-04 15:12:11 +04:00
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules wrapGAppsHook ];
|
2012-06-20 13:11:58 +04:00
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
kconfig
|
|
|
|
kcrash
|
|
|
|
kdbusaddons
|
|
|
|
kdelibs4support
|
|
|
|
kdoctools
|
|
|
|
kguiaddons
|
|
|
|
kiconthemes
|
|
|
|
kinit
|
|
|
|
khtml
|
|
|
|
kparts
|
|
|
|
ktexteditor
|
|
|
|
kwindowsystem
|
|
|
|
okular
|
|
|
|
poppler
|
|
|
|
qtscript
|
|
|
|
];
|
2017-02-25 18:44:01 +03:00
|
|
|
|
2017-05-16 18:56:41 +03:00
|
|
|
propagatedUserEnvPkgs = [ konsole ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Kile is a user friendly TeX/LaTeX authoring tool for the KDE desktop environment";
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "https://www.kde.org/applications/office/kile/";
|
2017-05-16 18:56:41 +03:00
|
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
|
|
license = lib.licenses.gpl2Plus;
|
|
|
|
};
|
2011-10-04 15:12:11 +04:00
|
|
|
}
|