775075a0e8
svn path=/nixpkgs/trunk/; revision=18132
21 lines
684 B
Nix
21 lines
684 B
Nix
{ 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.3";
|
|
src = fetchurl {
|
|
url = mirror://kde/stable/4.3.3/src/kdeedu-4.3.3.tar.bz2;
|
|
sha1 = "d1cmnmmq1m9yqh694xipy1s8wnkviqgx";
|
|
};
|
|
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 ];
|
|
};
|
|
}
|