about summary refs log tree commit diff
diff options
context:
space:
mode:
authorThéophane Hufschmitt <theophane.hufschmitt@polytechnique.org>2016-09-23 21:47:42 +0200
committerThéophane Hufschmitt <theophane.hufschmitt@polytechnique.org>2016-09-23 21:47:42 +0200
commitacc608d88ed4248c492c0631c65bfda6330ee01e (patch)
treeaab1f0736894d3683569e838afa7943bbd8e8ed9
parent0a2f4e4d56d8ddd46ad4743ef614b63da0b28836 (diff)
downloadnixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar.gz
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar.bz2
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar.lz
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar.xz
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.tar.zst
nixlib-acc608d88ed4248c492c0631c65bfda6330ee01e.zip
ocaml_4_02 : Fix src
 #08b85f5f9917cad7 introduced a wrong src url for ocaml 4.02 (and thus
  broke a lot of stuff),
  This restores the correct url.
-rw-r--r--pkgs/development/compilers/ocaml/4.02.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/development/compilers/ocaml/4.02.nix b/pkgs/development/compilers/ocaml/4.02.nix
index 5ea494f53b35..9ac53f567909 100644
--- a/pkgs/development/compilers/ocaml/4.02.nix
+++ b/pkgs/development/compilers/ocaml/4.02.nix
@@ -1,7 +1,7 @@
 import ./generic.nix rec {
   major_version = "4";
   minor_version = "02";
-  patch_version = "0";
+  patch_version = "3";
   patches = [ ./ocamlbuild.patch ];
   sha256 = "1qwwvy8nzd87hk8rd9sm667nppakiapnx4ypdwcrlnav2dz6kil3";
 }