2010-05-05 18:18:05 +00:00
|
|
|
{ stdenv, fetchurl, kdevplatform, cmake, pkgconfig, automoc4, shared_mime_info,
|
2014-10-30 21:17:01 +00:00
|
|
|
kdebase_workspace, gettext, perl, okteta, qjson, kate, konsole, kde_runtime, oxygen_icons }:
|
2010-05-05 18:18:05 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-10-05 05:43:39 +00:00
|
|
|
name = "${pname}-${version}";
|
2016-03-11 20:45:19 +00:00
|
|
|
version = "4.7.3";
|
2010-10-05 05:43:39 +00:00
|
|
|
pname = "kdevelop";
|
2010-05-05 18:18:05 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-03-11 20:45:19 +00:00
|
|
|
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
|
|
|
|
sha256 = "9db388d1c8274da7d168c13db612c7e94ece7815757b945b0aa0371620a06b35";
|
2010-05-05 18:18:05 +00:00
|
|
|
};
|
|
|
|
|
2014-03-11 17:21:34 +00:00
|
|
|
buildInputs = [ kdevplatform kdebase_workspace okteta qjson ];
|
2012-04-04 16:14:57 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ cmake pkgconfig automoc4 shared_mime_info gettext perl ];
|
2011-08-15 23:39:20 +00:00
|
|
|
|
2014-10-30 21:17:01 +00:00
|
|
|
propagatedUserEnvPkgs = [ kdevplatform kate konsole kde_runtime oxygen_icons ];
|
|
|
|
|
2016-03-11 20:45:19 +00:00
|
|
|
patches = [ ./gettext.patch ];
|
|
|
|
|
2011-08-15 23:39:20 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${okteta}/include/KDE";
|
2010-05-07 07:38:35 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
maintainers = [ maintainers.urkud ];
|
2010-05-07 10:02:52 +00:00
|
|
|
platforms = platforms.linux;
|
2010-05-07 07:38:35 +00:00
|
|
|
description = "KDE official IDE";
|
2010-05-07 10:02:52 +00: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 20:45:19 +00:00
|
|
|
homepage = https://www.kdevelop.org;
|
2010-05-07 07:38:35 +00:00
|
|
|
};
|
2010-05-05 18:18:05 +00:00
|
|
|
}
|