Upgraded KDE SDK, Multimedia, Webdev to 4.3.1
svn path=/nixpkgs/trunk/; revision=17009
This commit is contained in:
parent
4e39d699c4
commit
48497bd320
@ -121,9 +121,9 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
kdemultimedia = import ./multimedia {
|
kdemultimedia = import ./multimedia {
|
||||||
inherit (pkgs) stdenv fetchurl cmake perl qt4;
|
inherit (pkgs) stdenv fetchurl lib cmake perl qt4;
|
||||||
inherit (pkgs) alsaLib xineLib libvorbis flac taglib cdparanoia;
|
inherit (pkgs) alsaLib xineLib libvorbis flac taglib cdparanoia lame;
|
||||||
inherit kdelibs;
|
inherit kdelibs kdelibs_experimental;
|
||||||
inherit automoc4 phonon;
|
inherit automoc4 phonon;
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -176,13 +176,13 @@ rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
kdesdk = import ./sdk {
|
kdesdk = import ./sdk {
|
||||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl libxml2 libxslt boost subversion apr aprutil;
|
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl libxml2 libxslt boost subversion apr aprutil;
|
||||||
inherit kdelibs kdepimlibs;
|
inherit kdelibs kdepimlibs;
|
||||||
inherit automoc4 phonon strigi;
|
inherit automoc4 phonon strigi;
|
||||||
};
|
};
|
||||||
|
|
||||||
kdewebdev = import ./webdev {
|
kdewebdev = import ./webdev {
|
||||||
inherit (pkgs) stdenv fetchurl cmake qt4 perl libxml2 libxslt boost;
|
inherit (pkgs) stdenv fetchurl lib cmake qt4 perl libxml2 libxslt boost;
|
||||||
inherit kdelibs kdepimlibs;
|
inherit kdelibs kdepimlibs;
|
||||||
inherit automoc4 phonon;
|
inherit automoc4 phonon;
|
||||||
};
|
};
|
||||||
|
@ -1,13 +1,22 @@
|
|||||||
{stdenv, fetchurl, cmake, perl, qt4, alsaLib, libvorbis, xineLib, taglib, flac, cdparanoia,
|
{ stdenv, fetchurl, lib, cmake, perl, qt4, alsaLib, libvorbis, xineLib, taglib, flac, cdparanoia, lame
|
||||||
kdelibs, automoc4, phonon}:
|
, kdelibs, kdelibs_experimental, automoc4, phonon}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "kdemultimedia-4.2.4";
|
name = "kdemultimedia-4.3.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://kde/stable/4.2.4/src/kdemultimedia-4.2.4.tar.bz2;
|
url = mirror://kde/stable/4.3.1/src/kdemultimedia-4.3.1.tar.bz2;
|
||||||
sha1 = "ab1f9e38ab38d502aa771a70137ded811f40ad1c";
|
sha1 = "ef50f869f1a6cdf91fe7808f095fccbd9463a7dd";
|
||||||
};
|
};
|
||||||
includeAllQtDirs=true;
|
includeAllQtDirs=true;
|
||||||
buildInputs = [ cmake perl qt4 alsaLib libvorbis xineLib flac taglib cdparanoia
|
buildInputs = [ cmake perl qt4 alsaLib libvorbis xineLib flac taglib cdparanoia lame
|
||||||
kdelibs automoc4 phonon ];
|
kdelibs kdelibs_experimental automoc4 phonon ];
|
||||||
|
meta = {
|
||||||
|
description = "KDE Multimedia";
|
||||||
|
longDescription = ''
|
||||||
|
Contains various Multimedia utilties for KDE such as a movie player and sound volume mixer.
|
||||||
|
'';
|
||||||
|
license = "GPL";
|
||||||
|
homepage = http://www.kde.org;
|
||||||
|
maintainers = [ lib.maintainers.sander ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{stdenv, fetchurl, cmake, qt4, perl, libxml2, libxslt, boost, subversion, apr, aprutil,
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, boost, subversion, apr, aprutil
|
||||||
kdelibs, kdepimlibs, automoc4, phonon, strigi}:
|
, kdelibs, kdepimlibs, automoc4, phonon, strigi}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "kdesdk-4.2.4";
|
name = "kdesdk-4.3.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://kde/stable/4.2.4/src/kdesdk-4.2.4.tar.bz2;
|
url = mirror://kde/stable/4.3.1/src/kdesdk-4.3.1.tar.bz2;
|
||||||
sha1 = "ad5a00f5ee4ae0f627b971b7413edb0550e92db1";
|
sha1 = "ded236a12002b824f97856ce5dc882161ed437d2";
|
||||||
};
|
};
|
||||||
includeAllQtDirs=true;
|
includeAllQtDirs=true;
|
||||||
CMAKE_PREFIX_PATH=kdepimlibs;
|
CMAKE_PREFIX_PATH=kdepimlibs;
|
||||||
@ -13,4 +13,11 @@ stdenv.mkDerivation {
|
|||||||
inherit aprutil;
|
inherit aprutil;
|
||||||
buildInputs = [ cmake qt4 perl libxml2 libxslt boost subversion apr aprutil
|
buildInputs = [ cmake qt4 perl libxml2 libxslt boost subversion apr aprutil
|
||||||
kdelibs kdepimlibs automoc4 phonon strigi ];
|
kdelibs kdepimlibs automoc4 phonon strigi ];
|
||||||
|
meta = {
|
||||||
|
description = "KDE SDK";
|
||||||
|
longDescription = "Contains various development utilities such as the Umbrello UML modeler and Cerivisia CVS front-end";
|
||||||
|
license = "GPL";
|
||||||
|
homepage = http://www.kde.org;
|
||||||
|
maintainers = [ lib.maintainers.sander ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,19 @@
|
|||||||
{stdenv, fetchurl, cmake, qt4, perl, libxml2, libxslt, boost,
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, boost
|
||||||
kdelibs, kdepimlibs, automoc4, phonon}:
|
, kdelibs, kdepimlibs, automoc4, phonon}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "kdewebdev-4.2.4";
|
name = "kdewebdev-4.3.1";
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = mirror://kde/stable/4.2.4/src/kdewebdev-4.2.4.tar.bz2;
|
url = mirror://kde/stable/4.3.1/src/kdewebdev-4.3.1.tar.bz2;
|
||||||
sha1 = "9e3667c994793232177a70ff0b6fb2caa252757f";
|
sha1 = "28580c6f283fa7a6405f6a4415ebe9a4167f0992";
|
||||||
};
|
};
|
||||||
includeAllQtDirs=true;
|
includeAllQtDirs=true;
|
||||||
CMAKE_PREFIX_PATH=kdepimlibs;
|
CMAKE_PREFIX_PATH=kdepimlibs;
|
||||||
buildInputs = [ cmake qt4 perl libxml2 libxslt boost kdelibs kdepimlibs automoc4 phonon ];
|
buildInputs = [ cmake qt4 perl libxml2 libxslt boost kdelibs kdepimlibs automoc4 phonon ];
|
||||||
|
meta = {
|
||||||
|
description = "KDE Web development utilities";
|
||||||
|
license = "GPL";
|
||||||
|
homepage = http://www.kde.org;
|
||||||
|
maintainers = [ lib.maintainers.sander ];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user