kde5.kile: add konsole kpart
This commit is contained in:
parent
ff7a659567
commit
39aff85b0e
@ -1,9 +1,9 @@
|
|||||||
{ stdenv
|
{ kdeDerivation
|
||||||
, lib
|
, lib
|
||||||
, fetchgit
|
, fetchgit
|
||||||
, extra-cmake-modules
|
, ecm
|
||||||
, kdoctools
|
, kdoctools
|
||||||
, makeQtWrapper
|
, kdeWrapper
|
||||||
, qtscript
|
, qtscript
|
||||||
, kconfig
|
, kconfig
|
||||||
, kcrash
|
, kcrash
|
||||||
@ -13,54 +13,55 @@
|
|||||||
, kiconthemes
|
, kiconthemes
|
||||||
, kinit
|
, kinit
|
||||||
, khtml
|
, khtml
|
||||||
|
, konsole
|
||||||
, kparts
|
, kparts
|
||||||
, ktexteditor
|
, ktexteditor
|
||||||
, kwindowsystem
|
, kwindowsystem
|
||||||
, poppler
|
, poppler
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
let
|
||||||
name = "kile-${version}";
|
unwrapped =
|
||||||
version = "2016-07-02";
|
kdeDerivation rec {
|
||||||
|
name = "kile-${version}";
|
||||||
|
version = "2016-07-02";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchgit {
|
||||||
url = git://anongit.kde.org/kile.git;
|
url = git://anongit.kde.org/kile.git;
|
||||||
rev = "d38bc7069667119cc891b351188484ca6fb88973";
|
rev = "d38bc7069667119cc891b351188484ca6fb88973";
|
||||||
sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8";
|
sha256 = "1nha71i16fs7nq2812b5565nbmbsbs3ak5czas6xg1dg5bsvdqh8";
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [ ecm kdoctools ];
|
||||||
extra-cmake-modules
|
|
||||||
kdoctools
|
|
||||||
makeQtWrapper
|
|
||||||
];
|
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtscript
|
kconfig
|
||||||
kconfig
|
kcrash
|
||||||
kcrash
|
kdbusaddons
|
||||||
kdbusaddons
|
kdelibs4support
|
||||||
kdelibs4support
|
kdoctools
|
||||||
kdoctools
|
kguiaddons
|
||||||
kguiaddons
|
kiconthemes
|
||||||
kiconthemes
|
kinit
|
||||||
kinit
|
khtml
|
||||||
khtml
|
kparts
|
||||||
kparts
|
ktexteditor
|
||||||
ktexteditor
|
kwindowsystem
|
||||||
kwindowsystem
|
poppler
|
||||||
poppler
|
qtscript
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
meta = {
|
||||||
wrapQtProgram "$out/bin/kile"
|
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 ];
|
||||||
meta = {
|
license = lib.licenses.gpl2Plus;
|
||||||
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 ];
|
in
|
||||||
license = lib.licenses.gpl2Plus;
|
kdeWrapper unwrapped
|
||||||
};
|
{
|
||||||
|
targets = [ "bin/kile" ];
|
||||||
|
paths = [ konsole.unwrapped ];
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user