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:
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."
|
||||
'';
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user