2016-03-11 20:45:19 +00:00
|
|
|
{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, phonon,
|
2014-03-11 17:21:34 +00:00
|
|
|
gettext, pkgconfig, apr, aprutil, boost, qjson, grantlee }:
|
2010-05-05 19:18:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-03-11 20:45:19 +00:00
|
|
|
name = "kdevplatform-1.7.3";
|
2010-05-05 19:18:00 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-11 20:45:19 +00:00
|
|
|
url = "mirror://kde/stable/kdevelop/4.7.3/src/${name}.tar.bz2";
|
|
|
|
sha256 = "195134bde11672de38838f4b341ed28c58042374ca12beedacca9d30e6ab4a2b";
|
2010-05-05 19:18:00 +01:00
|
|
|
};
|
|
|
|
|
2016-08-22 19:35:34 +01:00
|
|
|
patches = [
|
|
|
|
./gettext.patch # build error caused by CMake update
|
|
|
|
./dependency.patch # build error: https://phabricator.kde.org/D1160
|
|
|
|
];
|
2015-09-22 06:58:28 +01:00
|
|
|
|
2012-04-04 17:14:57 +01:00
|
|
|
propagatedBuildInputs = [ kdelibs qt4 phonon ];
|
2014-03-11 17:21:34 +00:00
|
|
|
buildInputs = [ apr aprutil subversion boost qjson grantlee ];
|
2010-05-07 08:38:35 +01:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake automoc4 gettext pkgconfig ];
|
2012-04-04 17:14:57 +01:00
|
|
|
|
2016-03-15 10:40:42 +00:00
|
|
|
enableParallelBuilding = false;
|
2015-09-22 06:58:28 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2015-09-22 07:42:40 +01:00
|
|
|
maintainers = [ maintainers.ambrop72 ];
|
2015-09-22 06:58:28 +01:00
|
|
|
platforms = platforms.linux;
|
2010-05-07 08:38:35 +01:00
|
|
|
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."
|
|
|
|
'';
|
2016-03-11 20:45:19 +00:00
|
|
|
homepage = https://www.kdevelop.org;
|
2010-05-07 08:38:35 +01:00
|
|
|
};
|
2010-05-05 19:18:00 +01:00
|
|
|
}
|