mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-25 12:22:37 +03:00
utop: 1.15 -> 1.17
Version 1.18 doesn't compile cleanly currently, I need to debug what is going on there
This commit is contained in:
parent
d516f12dba
commit
37d0d8ac74
@ -1,22 +1,24 @@
|
|||||||
{stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper,
|
{stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper,
|
||||||
ocaml_react, camomile, zed
|
ocaml_react, camomile, zed, cppo, camlp4
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "1.15";
|
version = "1.17";
|
||||||
name = "utop-${version}";
|
name = "utop-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = https://github.com/diml/utop/archive/1.15.tar.gz;
|
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
|
||||||
sha256 = "106v0x6sa2x10zgmjf73mpzws7xiqanxswivd00iqnpc0bcpkmrr";
|
sha256 = "0l9lz2nypl2ls3kqzmp738m02yvscabhsfpj70ckp0p98pimnnfd";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ocaml findlib makeWrapper];
|
buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ];
|
||||||
|
|
||||||
propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];
|
propagatedBuildInputs = [ lambdaTerm ocaml_lwt ];
|
||||||
|
|
||||||
createFindlibDestdir = true;
|
createFindlibDestdir = true;
|
||||||
|
|
||||||
|
configureFlags = "--enable-camlp4";
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
make
|
make
|
||||||
make doc
|
make doc
|
||||||
|
Loading…
Reference in New Issue
Block a user