Update ocaml_batteries and camomile (ocamlPackages)

*  Add camomile 0.8.3 and 0.8.2 (for ocaml_batteries).
  *  Remove obsolete camomile 0.7.3 and 0.8.1.
  *  Update ocaml_batteries to version 1.3.0 (also add fixes for Darwin).


svn path=/nixpkgs/trunk/; revision=27299
This commit is contained in:
Marco Maggesi
2011-05-24 18:21:13 +00:00
parent a3b617c8e3
commit 5b730d301c
4 changed files with 25 additions and 10 deletions

View File

@@ -2,7 +2,7 @@
let
ocaml_version = (builtins.parseDrvName ocaml.name).version;
version = "1.2.0";
version = "1.3.0";
in
stdenv.mkDerivation {
@@ -10,13 +10,26 @@ stdenv.mkDerivation {
src = fetchurl {
url = "http://forge.ocamlcore.org/frs/download.php/423/batteries-${version}.tar.gz";
sha256 = "0lkkbfj51zkhhr56nx167448pvg02nrzjjkl57ycic2ikzgq6lmx";
sha256 = "1kf8dyivigavi89lpsz7hzdv48as10yck7gkmqmnsnn1dps3m7an";
};
buildInputs = [ocaml findlib camomile ounit];
# This option is not correctly detected on Darwin
# It should be fixed in the svn
BATTERIES_NATIVE_SHLIB = if stdenv.isDarwin then "no" else "yes";
# Ditto
patchPhase = ''
substituteInPlace Makefile --replace 'echo -n' echo
'';
configurePhase = "true"; # Skip configure
preInstall = ''
ensureDir "$out/lib/ocaml/${ocaml_version}/site-lib"
'';
doCheck = true;
checkTarget = "test";