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