ocamlPackages.result: 1.1 -> 1.2

This commit is contained in:
Vincent Laporte 2017-07-10 18:20:55 +00:00
parent c9468acdf4
commit 73860eea0f

View File

@ -1,15 +1,15 @@
{ stdenv, fetchFromGitHub, ocaml, findlib }: { stdenv, fetchFromGitHub, ocaml, findlib }:
let version = "1.1"; in let version = "1.2"; in
stdenv.mkDerivation { stdenv.mkDerivation {
name = "ocaml-result-${version}"; name = "ocaml${ocaml.version}-result-${version}";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "janestreet"; owner = "janestreet";
repo = "result"; repo = "result";
rev = "${version}"; rev = "${version}";
sha256 = "05y07rxdbkaxsc8cy458y00gq05i8gp35hhwg1b757mam21ccxxz"; sha256 = "1jwzpcmxwgkfsbjz9zl59v12hf1vv4r9kiifancn9p8gm206g3g0";
}; };
buildInputs = [ ocaml findlib ]; buildInputs = [ ocaml findlib ];