nixpkgs/pkgs/applications/editors/kile/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
997 B
Nix
Raw Normal View History

2024-04-14 23:57:21 +00:00
{ lib
, stdenv
, fetchurl
2024-04-14 23:57:21 +00:00
, cmake
, kdePackages
, qt6
}:
2024-04-14 23:57:21 +00:00
stdenv.mkDerivation rec {
pname = "kile";
2024-04-14 23:57:21 +00:00
version = "2.9.94";
src = fetchurl {
url = "mirror://sourceforge/kile/kile-${version}.tar.bz2";
2024-04-14 23:57:21 +00:00
sha256 = "U8Z0K9g/sJXL3ImLA/344Vq2gKgWk8yvnFB2uTrRo8o=";
2017-05-16 15:56:41 +00:00
};
nativeBuildInputs = [
2024-04-14 23:57:21 +00:00
cmake
kdePackages.extra-cmake-modules
qt6.wrapQtAppsHook
kdePackages.kdoctools
];
buildInputs = [
2024-04-14 23:57:21 +00:00
qt6.qtbase
qt6.qtdeclarative
qt6.qt5compat
kdePackages.kconfig
kdePackages.kcrash
kdePackages.kdbusaddons
kdePackages.kguiaddons
kdePackages.kiconthemes
kdePackages.konsole
kdePackages.kparts
kdePackages.ktexteditor
kdePackages.kwindowsystem
kdePackages.okular
kdePackages.poppler
2017-05-16 15:56:41 +00:00
];
meta = {
description = "User-friendly TeX/LaTeX authoring tool for the KDE desktop environment";
homepage = "https://www.kde.org/applications/office/kile/";
2017-05-16 15:56:41 +00:00
license = lib.licenses.gpl2Plus;
2023-11-27 01:17:53 +00:00
mainProgram = "kile";
2017-05-16 15:56:41 +00:00
};
}