2009-09-10 16:58:08 +02:00
|
|
|
{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, openbabel, boost, readline, gmm, gsl
|
2009-09-11 16:06:51 +02:00
|
|
|
, facile, ocaml, xplanet
|
2009-09-10 16:58:08 +02:00
|
|
|
, kdelibs, automoc4, phonon, eigen}:
|
2009-08-15 16:02:49 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2009-12-02 11:51:33 +01:00
|
|
|
name = "kdeedu-4.3.4";
|
2009-08-15 16:02:49 +02:00
|
|
|
src = fetchurl {
|
2009-12-02 11:51:33 +01:00
|
|
|
url = mirror://kde/stable/4.3.4/src/kdeedu-4.3.4.tar.bz2;
|
|
|
|
sha1 = "ee646d57db11b761d8da33fc03c596c8f531eb9d";
|
2009-08-15 16:02:49 +02:00
|
|
|
};
|
|
|
|
includeAllQtDirs=true;
|
2009-09-11 16:06:51 +02:00
|
|
|
buildInputs = [ cmake qt4 perl libxml2 libxslt openbabel boost readline gmm gsl facile ocaml xplanet
|
2009-09-10 16:58:08 +02:00
|
|
|
kdelibs automoc4 phonon eigen ];
|
|
|
|
meta = {
|
|
|
|
description = "KDE Educative software";
|
|
|
|
license = "GPL";
|
|
|
|
homepage = http://www.kde.org;
|
|
|
|
maintainers = [ lib.maintainers.sander ];
|
|
|
|
};
|
2009-08-15 16:02:49 +02:00
|
|
|
}
|