mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
commit
30f2dd5f55
@ -1,19 +1,19 @@
|
|||||||
{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed, camlp4 }:
|
{ stdenv, fetchurl, libev, ocaml, findlib, ocaml_lwt, ocaml_react, zed }:
|
||||||
|
|
||||||
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
|
assert stdenv.lib.versionAtLeast (stdenv.lib.getVersion ocaml) "4.01";
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.8";
|
version = "1.10";
|
||||||
name = "lambda-term-${version}";
|
name = "lambda-term-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = https://github.com/diml/lambda-term/archive/1.8.tar.gz;
|
url = "https://github.com/diml/lambda-term/archive/${version}.tar.gz";
|
||||||
sha256 = "0hy11x48q5bbh9czjp0w756cyxzr2c6qcnfm5n9f0i1l4qljwpgc";
|
sha256 = "1kwpsqds51xmy3z3ddkam92hkl7arlzy9awhzsq62ysxcl91fb8m";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ libev ocaml findlib ocaml_react ];
|
buildInputs = [ libev ocaml findlib ocaml_react ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ camlp4 zed ocaml_lwt ];
|
propagatedBuildInputs = [ zed ocaml_lwt ];
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
@ -1,23 +1,24 @@
|
|||||||
{stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper,
|
{stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper,
|
||||||
ocaml_react, camomile, zed, cppo, camlp4
|
ocaml_react, camomile, zed, cppo, camlp4, ppx_tools
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.17";
|
version = "1.19.2";
|
||||||
name = "utop-${version}";
|
name = "utop-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
|
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
|
||||||
sha256 = "0l9lz2nypl2ls3kqzmp738m02yvscabhsfpj70ckp0p98pimnnfd";
|
sha256 = "0hxybkqmrh0sz1yyyrgzdmxp46gda4vk22pv07s0qpfg2dpv56jh";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ];
|
buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ppx_tools ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];
|
propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
configureFlags = "--enable-camlp4";
|
configureFlags = [ "--enable-camlp4" ]
|
||||||
|
++ stdenv.lib.optional (ppx_tools != null) "--enable-interact";
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make
|
make
|
||||||
|
Loading…
Reference in New Issue
Block a user