57c049f4a0
(http://hydra.nixos.org/build/399330). * Fix the indentation of longDescription. svn path=/nixpkgs/trunk/; revision=21640
30 lines
1,017 B
Nix
30 lines
1,017 B
Nix
{ 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 ];
|
|
|
|
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;
|
|
};
|
|
}
|