d4a9c3aec4
No need to use an old git snapshot, since upstream has a proper beta version.
62 lines
1.1 KiB
Nix
62 lines
1.1 KiB
Nix
{ mkDerivation
|
|
, lib
|
|
, fetchurl
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, wrapGAppsHook
|
|
, qtscript
|
|
, kconfig
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kdelibs4support
|
|
, kguiaddons
|
|
, kiconthemes
|
|
, kinit
|
|
, khtml
|
|
, konsole
|
|
, kparts
|
|
, ktexteditor
|
|
, kwindowsystem
|
|
, okular
|
|
, poppler
|
|
}:
|
|
|
|
mkDerivation rec {
|
|
name = "kile-2.9.92";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/kile/${name}.tar.bz2";
|
|
sha256 = "177372dc25b1d109e037a7dbfc64b5dab2efe538320c87f4a8ceada21e9097f2";
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules wrapGAppsHook ];
|
|
|
|
propagatedBuildInputs = [
|
|
kconfig
|
|
kcrash
|
|
kdbusaddons
|
|
kdelibs4support
|
|
kdoctools
|
|
kguiaddons
|
|
kiconthemes
|
|
kinit
|
|
khtml
|
|
kparts
|
|
ktexteditor
|
|
kwindowsystem
|
|
okular
|
|
poppler
|
|
qtscript
|
|
];
|
|
|
|
propagatedUserEnvPkgs = [ konsole ];
|
|
|
|
meta = {
|
|
description = "Kile is a user friendly TeX/LaTeX authoring tool for the KDE desktop environment";
|
|
homepage = https://www.kde.org/applications/office/kile/;
|
|
maintainers = with lib.maintainers; [ fridh ];
|
|
license = lib.licenses.gpl2Plus;
|
|
};
|
|
}
|