28 lines
982 B
Nix
28 lines
982 B
Nix
{ stdenv, fetchurl, cmake, kdelibs, subversion, qt4, automoc4, phonon,
|
|
gettext, pkgconfig, apr, aprutil, boost, qjson, grantlee }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "kdevplatform-1.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://kde/stable/kdevelop/4.7.0/src/${name}.tar.xz";
|
|
sha256 = "bfd765019511c5c9abc19bc412c75d7abd468f1a077ce4bc471cd6704b9f53f7";
|
|
};
|
|
|
|
propagatedBuildInputs = [ kdelibs qt4 phonon ];
|
|
buildInputs = [ apr aprutil subversion boost qjson grantlee ];
|
|
|
|
nativeBuildInputs = [ 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."
|
|
'';
|
|
};
|
|
}
|