summary refs log tree commit diff
path: root/pkgs/desktops/kde-4.3/edu/default.nix
blob: 12d351650525a04db206ff89cfa1c9f0fc944c24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, lib, cmake, qt4, perl, libxml2, libxslt, openbabel, boost, readline, gmm, gsl
, facile, ocaml, xplanet
, kdelibs, automoc4, phonon, eigen}:

stdenv.mkDerivation {
  name = "kdeedu-4.3.5";
  src = fetchurl {
    url = mirror://kde/stable/4.3.5/src/kdeedu-4.3.5.tar.bz2;
    sha256 = "0740wsakzl5aa50d02lank8mdhgrs9fllfd3ykhwd66lasxx55a4";
  };
  includeAllQtDirs=true;
  buildInputs = [ cmake qt4 perl libxml2 libxslt openbabel boost readline gmm gsl facile ocaml xplanet
                  kdelibs automoc4 phonon eigen ];
  meta = {
    description = "KDE Educative software";
    license = "GPL";
    homepage = http://www.kde.org;
    maintainers = [ lib.maintainers.sander ];
  };
}