2010-05-05 11:18:05 -07:00
|
|
|
{ stdenv, fetchurl, kdevplatform, cmake, pkgconfig, automoc4, shared_mime_info,
|
2014-10-30 14:17:01 -07:00
|
|
|
kdebase_workspace, gettext, perl, okteta, qjson, kate, konsole, kde_runtime, oxygen_icons }:
|
2010-05-05 11:18:05 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-04 22:43:39 -07:00
|
|
|
name = "${pname}-${version}";
|
2016-03-11 12:45:19 -08:00
|
|
|
version = "4.7.3";
|
2010-10-04 22:43:39 -07:00
|
|
|
pname = "kdevelop";
|
2010-05-05 11:18:05 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-11 12:45:19 -08:00
|
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
|
|
|
|
sha256 = "9db388d1c8274da7d168c13db612c7e94ece7815757b945b0aa0371620a06b35";
|
2010-05-05 11:18:05 -07:00
|
|
|
};
|
|
|
|
|
2014-03-11 10:21:34 -07:00
|
|
|
buildInputs = [ kdevplatform kdebase_workspace okteta qjson ];
|
2012-04-04 09:14:57 -07:00
|
|
|
|
2012-12-28 10:20:09 -08:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig automoc4 shared_mime_info gettext perl ];
|
2011-08-15 16:39:20 -07:00
|
|
|
|
2014-10-30 14:17:01 -07:00
|
|
|
propagatedUserEnvPkgs = [ kdevplatform kate konsole kde_runtime oxygen_icons ];
|
|
|
|
|
2016-03-11 12:45:19 -08:00
|
|
|
patches = [ ./gettext.patch ];
|
|
|
|
|
2011-08-15 16:39:20 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${okteta}/include/KDE";
|
2010-05-07 00:38:35 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = [ maintainers.urkud ];
|
2010-05-07 03:02:52 -07:00
|
|
|
platforms = platforms.linux;
|
2010-05-07 00:38:35 -07:00
|
|
|
description = "KDE official IDE";
|
2010-05-07 03:02:52 -07:00
|
|
|
longDescription =
|
|
|
|
''
|
|
|
|
A free, opensource IDE (Integrated Development Environment)
|
|
|
|
for MS Windows, Mac OsX, Linux, Solaris and FreeBSD. It is a
|
|
|
|
feature-full, plugin extendable IDE for C/C++ and other
|
|
|
|
programing languages. It is based on KDevPlatform, KDE and Qt
|
|
|
|
libraries and is under development since 1998.
|
|
|
|
'';
|
2016-03-11 12:45:19 -08:00
|
|
|
homepage = https://www.kdevelop.org;
|
2010-05-07 00:38:35 -07:00
|
|
|
};
|
2010-05-05 11:18:05 -07:00
|
|
|
}
|