2017-08-29 23:37:38 +01:00
|
|
|
{ stdenv, fetchurl, cmake, gettext, pkgconfig, extra-cmake-modules
|
2017-07-03 09:09:55 +01:00
|
|
|
, boost, subversion, apr, aprutil, kwindowsystem
|
2016-08-27 09:27:41 +01:00
|
|
|
, qtscript, qtwebkit, grantlee, karchive, kconfig, kcoreaddons, kguiaddons, kiconthemes, ki18n
|
|
|
|
, kitemmodels, kitemviews, kio, kparts, sonnet, kcmutils, knewstuff, knotifications
|
|
|
|
, knotifyconfig, ktexteditor, threadweaver, kdeclarative, libkomparediff2 }:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "kdevplatform";
|
2017-08-29 23:37:38 +01:00
|
|
|
version = "5.1.2";
|
2016-08-27 09:27:41 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2017-05-17 20:26:11 +01:00
|
|
|
|
2016-08-27 09:27:41 +01:00
|
|
|
src = fetchurl {
|
2017-06-05 17:36:12 +01:00
|
|
|
url = "mirror://kde/stable/kdevelop/${version}/src/${name}.tar.xz";
|
2017-08-29 23:37:38 +01:00
|
|
|
sha256 = "e622ddad552a678baaf1166d5cbdc5fd1192d2324300c52ef2d25f1c6778664a";
|
2016-08-27 09:27:41 +01:00
|
|
|
};
|
|
|
|
|
2017-05-17 20:26:11 +01:00
|
|
|
nativeBuildInputs = [ cmake gettext pkgconfig extra-cmake-modules ];
|
2016-08-27 09:27:41 +01:00
|
|
|
|
|
|
|
buildInputs = [
|
2017-07-03 09:09:55 +01:00
|
|
|
boost subversion apr aprutil kwindowsystem
|
2016-08-27 09:27:41 +01:00
|
|
|
qtscript qtwebkit grantlee karchive kconfig kcoreaddons kguiaddons kiconthemes
|
|
|
|
ki18n kitemmodels kitemviews kio kparts sonnet kcmutils knewstuff
|
|
|
|
knotifications knotifyconfig ktexteditor threadweaver kdeclarative
|
|
|
|
libkomparediff2
|
|
|
|
];
|
|
|
|
|
2017-11-26 07:45:09 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-08-27 09:27:41 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = [ maintainers.ambrop72 ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
description = "KDE libraries for IDE-like programs";
|
|
|
|
longDescription = ''
|
|
|
|
A free, opensource set of libraries that can be used as a foundation for
|
|
|
|
IDE-like programs. It is programing-language independent, and is planned
|
|
|
|
to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc."
|
|
|
|
'';
|
|
|
|
homepage = https://www.kdevelop.org;
|
|
|
|
license = with stdenv.lib.licenses; [ gpl2Plus lgpl2Plus ];
|
|
|
|
};
|
|
|
|
}
|