about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2017-07-10 18:20:55 +0000
committerVincent Laporte <Vincent.Laporte@gmail.com>2017-07-10 18:21:02 +0000
commit73860eea0fee231e928204c5f5ee74707e43363a (patch)
treec41a3dec417563604489e86e07f4fdc91ef48ada /pkgs/development
parentc9468acdf42611ce5a753a394796b1a0977c600b (diff)
downloadnixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar.gz
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar.bz2
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar.lz
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar.xz
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.tar.zst
nixlib-73860eea0fee231e928204c5f5ee74707e43363a.zip
ocamlPackages.result: 1.1 -> 1.2
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/ocaml-modules/ocaml-result/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/ocaml-modules/ocaml-result/default.nix b/pkgs/development/ocaml-modules/ocaml-result/default.nix
index f531de5118ea..362ad697934f 100644
--- a/pkgs/development/ocaml-modules/ocaml-result/default.nix
+++ b/pkgs/development/ocaml-modules/ocaml-result/default.nix
@@ -1,15 +1,15 @@
 { stdenv, fetchFromGitHub, ocaml, findlib }:
 
-let version = "1.1"; in
+let version = "1.2"; in
 
 stdenv.mkDerivation {
-  name = "ocaml-result-${version}";
+  name = "ocaml${ocaml.version}-result-${version}";
 
   src = fetchFromGitHub {
     owner = "janestreet";
     repo = "result";
     rev = "${version}";
-    sha256 = "05y07rxdbkaxsc8cy458y00gq05i8gp35hhwg1b757mam21ccxxz";
+    sha256 = "1jwzpcmxwgkfsbjz9zl59v12hf1vv4r9kiifancn9p8gm206g3g0";
   };
 
   buildInputs = [ ocaml findlib ];