Add kdevelop

svn path=/nixpkgs/trunk/; revision=21613
This commit is contained in:
Yury G. Kudryashov 2010-05-05 18:18:05 +00:00
parent 8fce481d76
commit e58d461623
2 changed files with 19 additions and 0 deletions

View file

@ -238,6 +238,11 @@ pkgs.recurseIntoAttrs (rec {
inherit automoc4 phonon;
};
kdevelop = import ./extragear/kdevelop {
inherit (pkgs) stdenv fetchurl cmake pkgconfig shared_mime_info gettext perl;
inherit kdevplatform automoc4 kdebase_workspace;
};
kdevplatform = import ./extragear/kdevplatform {
inherit (pkgs) stdenv fetchurl cmake subversion qt4 perl gettext pkgconfig
apr aprutil boost;

View file

@ -0,0 +1,14 @@
{ stdenv, fetchurl, kdevplatform, cmake, pkgconfig, automoc4, shared_mime_info,
kdebase_workspace, gettext, perl }:
stdenv.mkDerivation rec {
name = "kdevelop-4.0.0";
src = fetchurl {
url = "mirror://kde/stable/kdevelop/4.0.0/src/${name}.tar.bz2";
sha256 = "0cnwhfk71iksip17cjzf3g68n751k8fz2acin6qb27k7sh71pdfp";
};
buildInputs = [ kdevplatform cmake pkgconfig automoc4 shared_mime_info
kdebase_workspace gettext stdenv.gcc.libc perl ];
}