nixpkgs/pkgs/desktops/kde-4/edu/default.nix
Eelco Dolstra 30d9dba60c * Use mirror://kde. (Contributed by Bas van Dijk.)
svn path=/nixpkgs/trunk/; revision=13293
2008-11-14 14:15:46 +00:00

21 lines
546 B
Nix

args: with args;
stdenv.mkDerivation rec {
name = "kdeedu-4.0.0";
src = fetchurl {
url = mirror://kde/stable/4.0.0/src/kdeedu-4.0.0.tar.bz2;
md5 = "73924e158e4a2de2107be441c808251f";
};
buildInputs = [kdelibs kdepimlibs kdeworkspace boost readline openbabel ocaml
libusb facile python];
myCmakeFiles = ./myCmakeFiles;
patchPhase = "
cp ${myCmakeFiles}/* ../cmake/modules
sed -e 's@+facile@\${LIBFACILE_INCLUDE_DIR}@' -i \\
../kalzium/src/CMakeOCamlInstructions.cmake
";
configureFlags = "--debug-trycompile";
}