lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

utop: 1.17 -> 1.19.2

+6 -5
+6 -5
pkgs/development/tools/ocaml/utop/default.nix
··· 1 1 {stdenv, fetchurl, ocaml, findlib, lambdaTerm, ocaml_lwt, makeWrapper, 2 - ocaml_react, camomile, zed, cppo, camlp4 2 + ocaml_react, camomile, zed, cppo, camlp4, ppx_tools 3 3 }: 4 4 5 5 stdenv.mkDerivation rec { 6 - version = "1.17"; 6 + version = "1.19.2"; 7 7 name = "utop-${version}"; 8 8 9 9 src = fetchurl { 10 10 url = "https://github.com/diml/utop/archive/${version}.tar.gz"; 11 - sha256 = "0l9lz2nypl2ls3kqzmp738m02yvscabhsfpj70ckp0p98pimnnfd"; 11 + sha256 = "0hxybkqmrh0sz1yyyrgzdmxp46gda4vk22pv07s0qpfg2dpv56jh"; 12 12 }; 13 13 14 - buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ]; 14 + buildInputs = [ ocaml findlib makeWrapper cppo camlp4 ppx_tools ]; 15 15 16 16 propagatedBuildInputs = [ lambdaTerm ocaml_lwt ]; 17 17 18 18 createFindlibDestdir = true; 19 19 20 - configureFlags = "--enable-camlp4"; 20 + configureFlags = [ "--enable-camlp4" ] 21 + ++ stdenv.lib.optional (ppx_tools != null) "--enable-interact"; 21 22 22 23 buildPhase = '' 23 24 make