1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00

kde5.kile: add konsole kpart

This commit is contained in:
Thomas Tuegel 2016-08-01 15:36:14 -05:00
parent ff7a659567
commit 39aff85b0e

View file

@ -1,9 +1,9 @@
{ stdenv
{ kdeDerivation
, lib
, fetchgit
, extra-cmake-modules
, ecm
, kdoctools
, makeQtWrapper
, kdeWrapper
, qtscript
, kconfig
, kcrash
@ -13,54 +13,55 @@
, kiconthemes
, kinit
, khtml
, konsole
, kparts
, ktexteditor
, kwindowsystem
, poppler
}:
stdenv.mkDerivation rec {
name = "kile-${version}";
version = "2016-07-02";
let
unwrapped =
kdeDerivation rec {
name = "kile-${version}";
version = "2016-07-02";
src = fetchgit {
url = git://anongit.kde.org/kile.git;
rev = "d38bc7069667119cc891b351188484ca6fb88973";
sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8";
src = fetchgit {
url = git://anongit.kde.org/kile.git;
rev = "d38bc7069667119cc891b351188484ca6fb88973";
sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8";
};
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeQtWrapper
];
nativeBuildInputs = [ ecm kdoctools ];
buildInputs = [
qtscript
kconfig
kcrash
kdbusaddons
kdelibs4support
kdoctools
kguiaddons
kiconthemes
kinit
khtml
kparts
ktexteditor
kwindowsystem
poppler
];
buildInputs = [
kconfig
kcrash
kdbusaddons
kdelibs4support
kdoctools
kguiaddons
kiconthemes
kinit
khtml
kparts
ktexteditor
kwindowsystem
poppler
qtscript
];
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;
};
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;
};
};
in
kdeWrapper unwrapped
{
targets = [ "bin/kile" ];
paths = [ konsole.unwrapped ];
}