1{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, phonon,
2 gettext, pkgconfig, apr, aprutil, boost, qjson, grantlee }:
3
4stdenv.mkDerivation rec {
5 name = "kdevplatform-1.7.3";
6
7 src = fetchurl {
8 url = "mirror://kde/stable/kdevelop/4.7.3/src/${name}.tar.bz2";
9 sha256 = "195134bde11672de38838f4b341ed28c58042374ca12beedacca9d30e6ab4a2b";
10 };
11
12 patches = [
13 ./gettext.patch # build error caused by CMake update
14 ./dependency.patch # build error: https://phabricator.kde.org/D1160
15 ];
16
17 propagatedBuildInputs = [ kdelibs qt4 phonon ];
18 buildInputs = [ apr aprutil subversion boost qjson grantlee ];
19
20 nativeBuildInputs = [ cmake automoc4 gettext pkgconfig ];
21
22 enableParallelBuilding = false;
23
24 meta = with stdenv.lib; {
25 maintainers = [ maintainers.ambrop72 ];
26 platforms = platforms.linux;
27 description = "KDE libraries for IDE-like programs";
28 longDescription = ''
29 A free, opensource set of libraries that can be used as a foundation for
30 IDE-like programs. It is programing-language independent, and is planned
31 to be used by programs like: KDevelop, Quanta, Kile, KTechLab ... etc."
32 '';
33 homepage = https://www.kdevelop.org;
34 };
35}