mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
Add new release of kdevelop
I'll remove the old release when Hydra will build the new one, and I'll test the result. svn path=/nixpkgs/trunk/; revision=33296
This commit is contained in:
parent
bd8d003d69
commit
34fcba81be
3 changed files with 65 additions and 0 deletions
34
pkgs/applications/editors/kdevelop/4.3.0.nix
Normal file
34
pkgs/applications/editors/kdevelop/4.3.0.nix
Normal file
|
@ -0,0 +1,34 @@
|
|||
{ stdenv, fetchurl, kdevplatform, cmake, pkgconfig, automoc4, shared_mime_info,
|
||||
kdebase_workspace, gettext, perl, okteta }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
version = "4.3.0";
|
||||
pname = "kdevelop";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
|
||||
sha256 = "0ay3d2s5442pvdsx9lyfzb986kh6848qhbls9ff982f0glzqdcya";
|
||||
};
|
||||
|
||||
buildInputs = [ kdevplatform kdebase_workspace okteta ];
|
||||
|
||||
buildNativeInputs = [ cmake pkgconfig automoc4 shared_mime_info gettext perl ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-I${okteta}/include/KDE";
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
maintainers = [ maintainers.urkud ];
|
||||
platforms = platforms.linux;
|
||||
description = "KDE official IDE";
|
||||
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.
|
||||
'';
|
||||
homepage = http://www.kdevelop.org;
|
||||
};
|
||||
}
|
27
pkgs/development/libraries/kdevplatform/1.3.0.nix
Normal file
27
pkgs/development/libraries/kdevplatform/1.3.0.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, perl, phonon,
|
||||
gettext, pkgconfig, apr, aprutil, boost, qjson }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "kdevplatform-1.3.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/kdevelop/4.3.0/src/${name}.tar.bz2";
|
||||
sha256 = "0afka8999csyj8hbgmcsbn8h2by04v7n8k4mrwkl0b79crdvwbcd";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ kdelibs qt4 phonon ];
|
||||
buildInputs = [ apr aprutil subversion boost qjson ];
|
||||
|
||||
buildNativeInputs = [ cmake automoc4 gettext pkgconfig ];
|
||||
|
||||
meta = {
|
||||
maintainers = [ stdenv.lib.maintainers.urkud ];
|
||||
platforms = stdenv.lib.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."
|
||||
'';
|
||||
};
|
||||
}
|
|
@ -7973,8 +7973,12 @@ let
|
|||
kdesvn = callPackage ../applications/version-management/kdesvn { };
|
||||
|
||||
kdevelop = callPackage ../applications/editors/kdevelop { };
|
||||
kdevelop_4_3 = callPackage ../applications/editors/kdevelop/4.3.0.nix {
|
||||
kdevplatform = self.kdevplatform_1_3;
|
||||
};
|
||||
|
||||
kdevplatform = callPackage ../development/libraries/kdevplatform { };
|
||||
kdevplatform_1_3 = callPackage ../development/libraries/kdevplatform/1.3.0.nix { };
|
||||
|
||||
kdiff3 = callPackage ../tools/text/kdiff3 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue