mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Update OCaml Batteries to version 2.2.0
This commit is contained in:
parent
841a02cabb
commit
ec1b40be87
@ -1,32 +1,18 @@
|
||||
{stdenv, fetchurl, ocaml, findlib, camomile, ounit}:
|
||||
|
||||
let
|
||||
ocaml_version = (builtins.parseDrvName ocaml.name).version;
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "ocaml-batteries-1.4.1";
|
||||
name = "ocaml-batteries-2.2.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://forge.ocamlcore.org/frs/download.php/684/batteries-1.4.1.tar.gz;
|
||||
sha256 = "bdca7deba290d83c66c0a5001da52b2d7f2af58b7b7e7d9303d4363aaafe9c30";
|
||||
url = http://forge.ocamlcore.org/frs/download.php/1363/batteries-2.2.tar.gz;
|
||||
sha256 = "0z4wg357fzz7cnarjsrrdnpmxw8mxcj10fp67dm3bnn0l3zkjwbs";
|
||||
};
|
||||
|
||||
buildInputs = [ocaml findlib camomile ounit];
|
||||
|
||||
patchPhase = ''
|
||||
substituteInPlace Makefile --replace '/bin/echo -n' echo
|
||||
'';
|
||||
|
||||
configurePhase = "true"; # Skip configure
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p "$out/lib/ocaml/${ocaml_version}/site-lib"
|
||||
'';
|
||||
|
||||
doCheck = true;
|
||||
|
||||
checkTarget = "test";
|
||||
createFindlibDestdir = true;
|
||||
|
||||
meta = {
|
||||
homepage = http://batteries.forge.ocamlcore.org/;
|
||||
@ -36,7 +22,7 @@ stdenv.mkDerivation {
|
||||
and comprehensive development platform for the OCaml programming
|
||||
language.
|
||||
'';
|
||||
license = "LGPL";
|
||||
license = stdenv.lib.licenses.lgpl21;
|
||||
platforms = ocaml.meta.platforms;
|
||||
maintainers = [
|
||||
stdenv.lib.maintainers.z77z
|
||||
|
@ -2899,9 +2899,7 @@ let
|
||||
|
||||
mlgmp = callPackage ../development/ocaml-modules/mlgmp { };
|
||||
|
||||
ocaml_batteries = callPackage ../development/ocaml-modules/batteries {
|
||||
camomile = camomile_0_8_2;
|
||||
};
|
||||
ocaml_batteries = callPackage ../development/ocaml-modules/batteries { };
|
||||
|
||||
ocaml_cryptgps = callPackage ../development/ocaml-modules/cryptgps { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user