From f612dc703eca9d8bb3b2fb85eedf885f70b52a2f Mon Sep 17 00:00:00 2001 From: Frederik Rietdijk Date: Fri, 12 Feb 2016 13:30:06 +0100 Subject: kde5.kile: init at git 2016-02-12 This adds a kde5/frameworks version of kile. --- pkgs/applications/editors/kile/frameworks.nix | 66 +++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) create mode 100644 pkgs/applications/editors/kile/frameworks.nix (limited to 'pkgs/applications/editors') diff --git a/pkgs/applications/editors/kile/frameworks.nix b/pkgs/applications/editors/kile/frameworks.nix new file mode 100644 index 000000000000..ff8bc371cf34 --- /dev/null +++ b/pkgs/applications/editors/kile/frameworks.nix @@ -0,0 +1,66 @@ +{ stdenv +, lib +, fetchgit +, extra-cmake-modules +, kdoctools +, makeQtWrapper +, qtscript +, kconfig +, kcrash +, kdbusaddons +, kdelibs4support +, kguiaddons +, kiconthemes +, kinit +, khtml +, kparts +, ktexteditor +, kwindowsystem +, poppler +}: + +stdenv.mkDerivation rec { + name = "kile-${version}"; + version = "2016-02-12"; + + src = fetchgit { + url = git://anongit.kde.org/kile.git; + rev = "c586532031872319ae5102fb13ab6de8d80da065"; + sha256 = "7d5ef8b8c1254a5988a1028e415c9139fbd20a9e6771413c38fa58345a744a7b"; + + }; + + nativeBuildInputs = [ + extra-cmake-modules + kdoctools + makeQtWrapper + ]; + + buildInputs = [ + qtscript + kconfig + kcrash + kdbusaddons + kdelibs4support + kdoctools + kguiaddons + kiconthemes + kinit + khtml + kparts + ktexteditor + kwindowsystem + poppler + ]; + + postInstall = '' + wrapQtProgram "$out/bin/kile" + ''; + + 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; + }; +} -- cgit 1.4.1