ocamlPackages.utop: 2.3.0 -> 2.4.1

ocamlPackages.zed: 1.6 -> 2.0.3

ocamlPackages.lambdaTerm: 1.13 -> 2.0.2
This commit is contained in:
Vincent Laporte
2019-08-28 06:36:57 +00:00
committed by Vincent Laporte
parent a86fe43558
commit f7387ad383
3 changed files with 15 additions and 17 deletions
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, ocaml, findlib, ocamlbuild, dune
{ stdenv, fetchurl, ocaml, findlib, dune
, lambdaTerm, cppo, makeWrapper
}:
@@ -7,16 +7,16 @@ then throw "utop is not available for OCaml ${ocaml.version}"
else
stdenv.mkDerivation rec {
version = "2.3.0";
version = "2.4.1";
name = "utop-${version}";
src = fetchurl {
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
sha256 = "1g1xf19fhzwsikp33pv1wf6wb2qdc5y7dzqi46h8c4l850cwscjh";
sha256 = "0kbg7sfn7jaic7xcy7dm543yzsywirxbgpiv2rzwnp9ny2510f9g";
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ ocaml findlib ocamlbuild cppo dune ];
buildInputs = [ ocaml findlib cppo dune ];
propagatedBuildInputs = [ lambdaTerm ];