Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ocamlPackages.utop: 2.2.0 -> 2.3.0 #55236

Merged
merged 1 commit into from Feb 15, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/development/tools/ocaml/utop/default.nix
Expand Up @@ -7,12 +7,12 @@ then throw "utop is not available for OCaml ${ocaml.version}"
else

stdenv.mkDerivation rec {
version = "2.2.0";
version = "2.3.0";
name = "utop-${version}";

src = fetchurl {
url = "https://github.com/diml/utop/archive/${version}.tar.gz";
sha256 = "1414snwmqaxs1x8wbpjf6fn3jsl01hq0phrr7639xmb5vh15mgd4";
sha256 = "1g1xf19fhzwsikp33pv1wf6wb2qdc5y7dzqi46h8c4l850cwscjh";
};

nativeBuildInputs = [ makeWrapper ];
Expand Down